猫头鹰的咖啡馆
猫头鹰的咖啡馆
全部文章
题解
归档
标签
去牛客网
登录
/
注册
猫头鹰的咖啡馆的博客
全部文章
/ 题解
(共163篇)
题解 | #合并两个排序的链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Merge...
C++
2021-10-09
0
412
题解 | #寻找第K大#
class Solution { public: int findKth(vector<int> a, int n, int K) { return quickfind(a, 0, n-1, K); } int quickfind(ve...
C++
2021-10-09
0
270
题解 | #实现二叉树先序,中序和后序遍历# 就这样写吧,直到天明
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: vector<int>...
C++
2021-10-09
0
283
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页