小兄弟加油啊
小兄弟加油啊
全部文章
题解
归档
标签
去牛客网
登录
/
注册
小兄弟加油啊的博客
全部文章
/ 题解
(共38篇)
题解 | #求平方根#
class Solution { public: /** * * @param x int整型 * @return int整型 */ int mysqrt(int x) { int i=0, ans=1; f...
C++
2021-11-14
0
265
题解 | #斐波那契数列#
class Solution { public: int Fibonacci(int n) { if(n==1||n==2) return 1; return Fibonacci(n-1)+Fibonacci(n-2); } };
C++
2021-11-13
0
295
题解 | #反转字符串#
class Solution { public: void swap(char &ch1, char &ch2){ } /** * 反转字符串 * @param str string字符串 * @return ...
C++
2021-11-12
0
343
题解 | #在二叉树中找到两个节点的最近公共祖先#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: void trs(TreeNo...
C++
2021-11-12
0
388
题解 | #两个链表生成相加链表#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
C++
2021-11-12
0
397
题解 | #两个链表的第一个公共结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* FindF...
C++
2021-11-12
0
373
题解 | #两个链表的第一个公共结点#
先计算两个链表的长度sz1, sz2,然后将较长的链表遍历到abs(sz1-sz2)的位置,然后逐一比较,相等则直接返回该节点 /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), n...
C++
2021-11-12
0
428
题解 | #最长公共子串#
class Solution { public: /** * longest common substring * @param str1 string字符串 the string * @param str2 string字符串 the string ...
C++
2021-11-12
0
405
题解 | #按之字形顺序打印二叉树#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
C++
2021-11-11
0
372
题解 | #大数加法#
class Solution { public: inline int s2i(char ch){ return ch-'0'; } inline char i2s(int i){ return i+'0'; } ...
C++
2021-11-10
0
427
首页
上一页
1
2
3
4
下一页
末页