Black-K
Black-K
全部文章
分类
题解(19)
归档
标签
去牛客网
登录
/
注册
Black-K的博客
全部文章
(共18篇)
题解 | #从上往下打印二叉树#
保存每一层存在的节点在queue里面,依次判断打印, /* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : ...
2021-08-10
0
463
题解 | #数组中出现次数超过一半的数字#
两行代码搞定。。。。 class Solution { public: int MoreThanHalfNum_Solution(vector<int> numbers) { sort(numbers.begin(),numbers.end()); ret...
c++
2021-08-05
9
993
题解 | #包含min函数的栈#
class Solution { public: stack<int> s1; stack<int> s2; void push(int value) { if(s2.empty()||value<=s2.top()) ...
c++
2021-08-04
0
363
题解 | #树的子结构#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
c++
递归
2021-08-03
0
497
题解 | #整数中1出现的次数(从1到n整数中1出现的次数)#
class Solution { public: int NumberOf1Between1AndN_Solution(int n) { if(n<=0) return 0; int count=0; int ret=0; ...
2021-07-12
0
433
题解 | #整数中1出现的次数(从1到n整数中1出现的次数)#
//方法一: //遍历每一个数,将每个数转换成字符串,判断字符串中含有'1'字符的个数; class Solution { public: int Count(string s){//写一个计算字符串中'1'的个数 int num=0; for(auto &a...
2021-07-12
1
438
题解 | #数值的整数次方#
class Solution { public: double Power(double base, int exponent) { //STL标准库源码 /* //template <class T,class Integer, class Monoid...
2021-07-11
0
481
题解 | #调整数组顺序使奇数位于偶数前面#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型vector * @return int整型vecto...
2021-07-11
2
527
首页
上一页
1
2
下一页
末页