你说夕阳很美
你说夕阳很美
全部文章
分类
题解(152)
归档
标签
去牛客网
登录
/
注册
你说夕阳很美的博客
全部文章
(共153篇)
题解 | #换钱的最少货币数#
class Solution { public: /** * 最少货币数 * @param arr int整型vector the array * @param aim int整型 the target * @return int整型 */ ...
C++
2021-11-02
0
340
题解 | #链表中倒数最后k个结点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
C++
2021-11-01
0
338
题解 | #没有重复项数字的所有排列#
class Solution { public: void function(vector<int> &num, vector<int> &ans, vector<vector<int>> &res, vector<...
C++
2021-11-01
0
356
题解 | #集合的所有子集#
class Solution { public: void subset(vector<int> &S, vector<vector<int>> &vec, vector<int> sub, int start, int k) ...
C++
2021-11-01
0
454
题解 | #大数乘法#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param s string字符串 第一个整数 * @param t string字符串 第二个整数 ...
C++
2021-10-28
0
435
题解 | #验证IP地址#
class Solution { public: /** * 验证IP地址 * @param IP string字符串 一个IP地址字符串 * @return string字符串 */ // 首先编写split函数 // 然后将IP地址...
C++
2021-10-27
0
427
题解 | #验证IP地址#
/** * 验证IP地址 * @param IP string字符串 一个IP地址字符串 * @return string字符串 */ function solve( IP ) { // write code here const arr4 = IP.split(".") ...
Javascript Node
2021-10-26
1
384
题解 | #最大数#
class Solution { public: /** * 最大数 * @param nums int整型vector * @return string字符串 */ // 排序函数 static bool cmp(const st...
C++
2021-10-26
0
390
题解 | #字符串变形#
class Solution { public: string trans(string s, int n) { // write code here // 两次翻转 reverse(s.begin(), s.end()); f...
C++
2021-10-23
0
341
题解 | #二叉搜索树的第k个结点#
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(N...
C++
2021-10-20
0
327
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页