青叶摩卡
青叶摩卡
全部文章
分类
归档
标签
去牛客网
登录
/
注册
青叶摩卡的博客
TA的专栏
0篇文章
0人订阅
面试高频榜单思路
0篇文章
0人学习
面试高频榜单思路梳理
0篇文章
0人学习
面试高频榜单思路梳理
0篇文章
0人学习
全部文章
(共136篇)
题解 | #合并k个已排序的链表#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
2023-04-04
0
268
题解 | #买卖股票的最好时机(一)#
class Solution { public: /** * * @param prices int整型vector * @return int整型 */ int maxProfit(vector<int>& prices) {...
2023-04-04
0
241
题解 | #在旋转过的有序数组中寻找目标值#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param target int整型...
2023-04-03
0
277
题解 | #求平方根#
class Solution { public: /** * * @param x int整型 * @return int整型 */ int mysqrt(int x) { int l = 1, r = x / 2; ...
2023-04-03
1
247
题解 | #最长上升子序列(三)#
#include <vector> class Solution { public: /** * retrun the longest increasing subsequence * @param arr int整型vector the array ...
2023-04-03
0
288
题解 | #重建二叉树#
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x),...
2023-04-01
0
295
题解 | #三数之和#
class Solution { public: vector<vector<int> > threeSum(vector<int> &num) { sort(num.begin(), num.end()); vector&...
2023-04-01
0
213
题解 | #最长回文子串#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param A string字符串 * @return int整型 */ ...
2023-04-01
0
239
题解 | #斐波那契数列#
class Solution { public: int Fibonacci(int n) { if (n == 1 || n == 2) { return 1; } int n1 = 1, n2 = 1, n3; ...
2023-03-30
0
261
题解 | #螺旋矩阵#
#include <vector> class Solution { public: vector<int> spiralOrder(vector<vector<int> > &matrix) { int m = matrix....
2023-03-30
0
338
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页