HDU-M_gician
HDU-M_gician
全部文章
分类
题解(6)
归档
标签
去牛客网
登录
/
注册
HDU-M_gician的博客
全部文章
(共7篇)
题解 | #集合的所有子集(一)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param S int整型vector * @return int整型vector<...
2024-10-30
0
18
设计getMin功能的栈
单调栈维护最小值 class Solution { public: vector<int> getMinStack(vector<vector<int> >& op) { vector<int> ans; ...
2021-03-05
0
524
数组中未出现的最小正整数
想了想,感觉靠谱的方法还是借用传过来的数组,至少没有额外增加空间。 class Solution { public: int minNumberdisappered(vector<int>& arr) { // write code here ...
2021-03-05
0
738
将字符串转化为整数
C++ 4行 class Solution { public: int atoi(const char *str) { if(str[0] == '\0') return 0; stringstream ss(str); int res;...
2021-03-04
0
635
买卖股票最好时机
记录一下最小值,O(N)扫一遍 class Solution { public: /** * * @param prices int整型vector * @return int整型 */ int maxProfit(vector<in...
2021-03-03
0
576
合并k个有序链表
简简单单优先队列 class Solution { public: struct Node { int id,val; ListNode * p; bool operator < (const Node & a) cons...
2021-03-03
0
557
C++,简简单单十来行
class Solution { public: void add(string &ans,char x,char y,int &d) { int res = x - '0' + y - '0' + d; ans += (res % 1...
2021-03-03
26
2047