猫头鹰的咖啡馆
猫头鹰的咖啡馆
全部文章
题解
归档
标签
去牛客网
登录
/
注册
猫头鹰的咖啡馆的博客
全部文章
/ 题解
(共163篇)
题解 | #判断二叉树是否对称# 让我这一夜长醉,流年似水般滋味
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
C++
2021-10-14
0
377
题解 | #回文数字#
class Solution { public: /** * * @param x int整型 * @return bool布尔型 */ bool isPalindrome(int x) { if ( x < 0) {...
C++
2021-10-14
0
298
题解 | #二叉搜索树的第k个结点# 你为什么就是不会呢。。
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
C++
2021-10-14
0
323
题解 | #第一个只出现一次的字符# find_first_of和find_last_of
class Solution { public: int FirstNotRepeatingChar(string str) { int len = str.size(); for (int i = 0; i < len; i++) { ...
C++
2021-10-14
0
320
题解 | #链表内指定区间反转# 经典头插法,记到笔记中。
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
C++
2021-10-14
0
433
题解 | #划分链表# 一开始想到了两种做法,保住第一种,冲刺第二种
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
C++
2021-10-14
0
389
题解 | #数组中只出现一次的两个数字#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型vector * @return int整型vecto...
C++
2021-10-14
0
274
题解 | #矩阵元素查找#常规题,分类多了点
class Solution { public: int binaryFind(vector<int> mat, int n, int x) { int line = mat.size(); int start = 0, end = line; ...
C++
2021-10-14
0
350
题解 | #在二叉树中找到两个节点的最近公共祖先#不要敲代码的时候聊天。。。
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
C++
2021-10-14
0
249
题解 | #两个链表的第一个公共结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* FindF...
C++
2021-10-13
0
351
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页