Black-K
Black-K
全部文章
分类
题解(19)
归档
标签
去牛客网
登录
/
注册
Black-K的博客
全部文章
(共18篇)
题解 | #查找除复旦大学的用户信息#
# select device_id,gender,age,university from user_profile where age is not null; select device_id,gender,age,university from user_profile where age!=...
Mysql
2022-02-28
0
313
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university<>"复旦大学"; select device_id,gender,age,university from user_profile whe...
Mysql
2022-02-28
1
372
题解 | #二叉搜索树的最近公共祖先#
1.都在左边,或者都在右边,否则有一个就是我,,直接跳出,返回我; 2.递归调用 * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : va...
C++
C
2021-11-20
14
1047
题解 | #二叉树的深度#
struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class Sol...
C++
2021-11-09
0
431
题解 | #链表中环的入口结点#
struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ...
C++
2021-11-09
0
435
题解 | #两个链表的第一个公共结点#
struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* FindFirs...
C++
2021-11-08
0
413
题解 | #链表的回文结构#
两种方法,第二种的话空间复杂度成O(N)了;; /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class Palindrome...
c++
c
2021-09-03
3
591
题解 | #链表中倒数第k个结点#
class Solution { public: ListNode* FindKthToTail(ListNode* pListHead, unsigned int k) { ListNode *fast=pListHead; ListNode *slow=p...
c++
c
2021-09-02
0
465
题解 | #顺时针打印矩阵#
class Solution { public: vector<int> printMatrix(vector<vector<int> > matrix) { vector<int> v; if(matrix.e...
c++
2021-08-14
0
573
题解 | #第一个只出现一次的字符#
class Solution { public: int FirstNotRepeatingChar(string str) { if(str.empty()) return -1; //方法一: // map<char,int> ...
c++
find
map
2021-08-11
0
386
首页
上一页
1
2
下一页
末页