城城城<
城城城<
全部文章
分类
归档
标签
去牛客网
登录
/
注册
城城城<的博客
全部文章
(共74篇)
题解 | #正则表达式匹配#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 * @param pattern string字...
2023-05-12
0
229
题解 | #合并两个排序的链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Merge...
2023-05-12
0
221
题解 | #反转链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Rever...
2023-05-09
0
199
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ #include <unordered_set...
2023-05-09
0
180
题解 | #链表中倒数最后k个结点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-05-09
0
186
题解 | #调整数组顺序使奇数位于偶数前面(一)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型vector * @return int整型vecto...
2023-05-09
0
166
题解 | #表示数值的字符串#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 * @return bool布尔型 *...
2023-05-09
0
179
题解 | #删除链表的节点#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: /*...
2023-05-07
0
246
题解 | #打印从1到最大的n位数#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 最大位数 * @return int整型vector ...
2023-05-07
0
159
题解 | #数值的整数次方#
class Solution { public: double Power(double base, int exponent) { double ans=1; if(exponent>=0) { for(int ...
2023-05-07
0
162
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页