城城城<
城城城<
全部文章
分类
归档
标签
去牛客网
登录
/
注册
城城城<的博客
全部文章
(共74篇)
题解 | #数组中只出现一次的两个数字#
#include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型vector ...
2023-05-16
0
231
题解 | #调整数组顺序使奇数位于偶数前面(二)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型vector * @return int整型vecto...
2023-05-16
0
190
题解 | #跳台阶扩展问题#
//转化成排列组合问题,利用杨辉三角公式 class Solution { public: int jumpFloorII(int number) { int ans=1; for(int i=1;i<number;i++){ a...
2023-05-12
0
162
题解 | #矩形覆盖#
class Solution { public: int rectCover(int number) { int a=0,b=1,c=2; for(int i=0;i<number;i++){ a=b; b...
2023-05-12
0
173
题解 | #数字序列中某一位的数字#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return int整型 */ in...
2023-05-12
0
201
题解 | #从1到n整数中1出现的次数#
class Solution { public: int NumberOf1Between1AndN_Solution(int n) { int ans=0,t=1; int m=n; while(n!=0){ ans+...
2023-05-12
0
233
题解 | #连续子数组的最大和#
class Solution { public: int FindGreatestSumOfSubArray(vector<int> array) { int ans=array[0],max=array[0]; for(int i=1;i<...
2023-05-12
0
175
题解 | #包含min函数的栈#
class Solution { public: void push(int value) { x.push_back(value); if(x.size()==1){ m.push_back(value); } ...
2023-05-12
0
189
题解 | #对称的二叉树#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
2023-05-12
0
214
题解 | #二叉树的镜像#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2023-05-12
0
206
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页