你说夕阳很美
你说夕阳很美
全部文章
分类
题解(152)
归档
标签
去牛客网
登录
/
注册
你说夕阳很美的博客
全部文章
(共153篇)
题解 | #两个链表的第一个公共结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public...
2021-08-30
0
329
题解 | #按之字形顺序打印二叉树#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
2021-08-30
0
373
题解 | #最长公共子串#
class Solution { public: /** * longest common substring * @param str1 string字符串 the string * @param str2 string字符串 the string ...
2021-08-30
0
349
题解 | #删除链表的倒数第n个节点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
2021-08-29
0
325
题解 | #大数加法#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t string字符...
2021-08-28
0
394
题解 | #括号序列#
class Solution { public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(string s) { // write code ...
2021-08-28
0
342
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ...
2021-08-28
0
326
题解 | #合并两个有序的数组#
class Solution { public: void merge(int A[], int m, int B[], int n) { int i = m - 1, j = n - 1, k = m + n -1; // 设置三个指针 //...
2021-08-28
0
412
题解 | #判断链表中是否有环#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
2021-08-27
0
316
题解 | #链表中的节点每k个一组翻转#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
2021-08-26
0
391
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页