总之就是非常可爱
总之就是非常可爱
全部文章
分类
题解(177)
归档
标签
去牛客网
登录
/
注册
总之就是非常可爱的博客
全部文章
(共171篇)
题解 | #完全二叉树结点数#
/** struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) ...
C++
2022-02-27
2
391
题解 | #连续子数组的最大乘积#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * ...
C++
2022-02-27
1
557
题解 | #把二叉树打印成多行#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) :...
C++
2022-02-27
1
313
题解 | #数组中出现次数超过一半的数字#
class Solution { public: //投票算法(候选人算法) //算法思想如下:如果每次从数组中挑选出来两个数,如果这两个数不相同则直接去除这两个数 ///如果相同则这种数的个数加2 &...
C++
2022-02-25
1
375
题解 | #旋转数组的最小数字#
class Solution { public: int minNumberInRotateArray(vector<int> rotateArray) { if(rotateArray[0]<ro...
C++
2022-02-25
2
344
题解 | #二叉搜索树与双向链表#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; &...
C++
2022-02-25
1
332
题解 | #扑克牌顺子#
class Solution { public: bool IsContinuous( vector<int> numbers ) { map<int, int>hashMap;//key的含...
C++
2022-02-25
1
316
题解 | #三数之和#
class Solution { public: vector<vector<int> > threeSum(vector<int> &num) { vector<i...
C++
2022-02-23
1
343
题解 | #螺旋矩阵#
class Solution { public: vector<int> spiralOrder(vector<vector<int> > &matrix) {  ...
C++
2022-02-23
1
359
题解 | #在两个长度相等的排序数组中找到上中位数#
class Solution { public: /** * find median in two sorted array * @param arr1 int整型vector the arr...
C++
2022-02-23
3
372
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页