跪求要一个offer
跪求要一个offer
全部文章
分类
题解(178)
归档
标签
去牛客网
登录
/
注册
跪求要一个offer的博客
TA的专栏
12篇文章
0人订阅
算法和编程题解
12篇文章
270人学习
全部文章
(共183篇)
题解 | 进制转换
#include <iostream> #include <cmath> using namespace std; // 64 位输出请用 printf("%lld") int suan(int data){ int result = 1; ...
2025-04-18
0
27
题解 | 字符串分隔
#include <iostream> #include <string> using namespace std; int main() { string str; getline(cin, str); int len = str.size(); ...
2025-04-16
0
21
题解 | 明明的随机数
#include <iostream> #include <cmath> #include <iterator> #include <set> #include <vector> #include <algorithm> usi...
2025-04-16
0
32
题解 | 计算某字符出现次数
#include <iostream> #include <cctype> #include <string> #include<vector> using namespace std; int main() { string str; ...
2025-04-16
0
21
题解 | 字符串最后一个单词的长度
#include <iostream> #include <string> #include<vector> using namespace std; int main() { int len = 0; string input; vec...
2025-04-15
0
25
题解 | #和为S的连续正数序列#
#include <vector> class Solution { public: vector<vector<int> > FindContinuousSequence(int sum) { vector<vector<in...
2023-02-25
0
310
题解 | #二叉树中和为某一值的路径(一)#
来自专栏
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
2023-01-04
0
0
题解 | #二叉搜索树的第k个节点#
来自专栏
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2022-12-14
0
0
题解 | #数字在升序数组中出现的次数#
class Solution {public: int GetNumberOfK(vector<int> data ,int k) { &...
2022-12-13
0
0
题解 | #两个链表的第一个公共结点#
/*struct ListNode { int val; struct ListNode *next; List...
2022-12-05
0
0
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页