橙子爱吃桃子
橙子爱吃桃子
全部文章
分类
C++字符串笔记(1)
题解(70)
归档
标签
去牛客网
登录
/
注册
橙子爱吃桃子的博客
TA的专栏
1篇文章
0人订阅
C++相关总结
1篇文章
808人学习
全部文章
(共71篇)
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string str; cin >> str; char ch; cin >> ch; unorder...
2020-09-03
3
956
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string s; while(cin >> s); cout << s.size(); re...
2020-09-03
335
32012
C++二分标准模板:
C++二分标准模板 class Solution { public: int upper_bound_(int n, int v, vector<int>& a) { int l = 0, r = n; while(l < r) { ...
2020-09-01
18
895
C++简洁代码(一行):
C++简洁代码(一行): class Solution { public: int Add(int num1, int num2) { return num2 == 0 ? num1 : Add((num1 ^ num2),(unsigned int)(num1 & ...
2020-06-27
4
807
C++简洁代码:
C++简洁代码: class Solution { public: ListNode* FindFirstCommonNode( ListNode* pHead1, ListNode* pHead2) { ListNode* hA = pHead1; ListNode* hB...
2020-06-26
1
660
C++简洁代码(2行):
C++简洁代码(2行): class Solution { public: bool IsBalanced_Solution(TreeNode* pRoot) { return !pRoot ? true : abs(depth(pRoot->left) - depth...
2020-06-25
4
1154
C++简洁代码(中序遍历):
C++简洁代码: class Solution { public: TreeNode* KthNode(TreeNode* pRoot, int k) { stack<TreeNode*> stk; TreeNode* cur = pRoot; ...
2020-06-24
3
1058
C++简洁代码/递归一行:
C++简洁代码/递归一行: class Solution { public: int TreeDepth(TreeNode* pRoot) { return !pRoot ? 0 : max(TreeDepth(pRoot->left), TreeDepth(pRoot->...
2020-06-23
1
786
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); reverse(str.begin(),str.end()); ...
2020-06-22
24
1358
C++简洁代码:
C++简洁代码: #include<bits/stdc++.h> using namespace std; int main () { string str; cin >> str; reverse(str.begin(),str.end()); ...
2020-06-11
16
1998
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页