青叶摩卡
青叶摩卡
全部文章
分类
归档
标签
去牛客网
登录
/
注册
青叶摩卡的博客
TA的专栏
0篇文章
0人订阅
面试高频榜单思路
0篇文章
0人学习
面试高频榜单思路梳理
0篇文章
0人学习
面试高频榜单思路梳理
0篇文章
0人学习
全部文章
(共136篇)
题解 | #设计LRU缓存结构#
#include <list> #include <unordered_map> class Solution { using List = list<pair<int, int>>; List lists; unordered...
2023-07-21
0
369
题解 | #排序#
#include <functional> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 将给定数组排序 * @param arr int整型...
2023-07-20
0
275
题解 | #反转链表#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-07-20
0
293
题解 | #大数乘法#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 第一个整数 * @param t string字符串 ...
2023-07-18
0
327
题解 | #最大数#
#include <algorithm> #include <cstdio> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 最大数 ...
2023-07-18
0
388
题解 | #环形链表的约瑟夫问题#
class Solution { public: /** * * @param n int整型 * @param m int整型 * @return int整型 */ int ysf(int n, int m) { ...
2023-06-06
0
281
题解 | #数组中的最长连续子序列#
class Solution { public: /** * max increasing subsequence * @param arr int整型vector the array * @return int整型 */ int MLS(ve...
2023-06-06
1
339
题解 | #字符串变形#
class Solution { public: string trans(string s, int n) { reverse(s.begin(), s.end()); int start = 0; auto blank = s.find('...
2023-06-05
0
298
题解 | #二叉搜索树的第k个节点#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2023-06-05
0
269
题解 | #二分查找-II#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 如果目标值存在返回下标,否则返回 -1 * @param nums int整型vector * ...
2023-05-31
0
275
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页