小菲柱
小菲柱
全部文章
分类
个人笔记(5)
笔试练习(7)
面试整理(4)
题解(178)
归档
标签
去牛客网
登录
/
注册
小菲柱的博客
备战秋招~个人博客暂不更新
全部文章
(共199篇)
题解 | #大根堆(模板)#
C语言版本实现 #include <stdio.h> #include <stdlib.h> #include <string.h> // back指向最后一位元素 // front指向首元素 // 大根堆的封装 typedef struct { in...
C
堆
2022-07-13
0
388
题解 | #链表(模板)#
C语言版本 #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct forward_list{ int val; struct forward_list *nex...
C
链表
2022-07-13
0
428
题解 | #队列(模板)#
C语言版本 #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { int arr[100000]; int front; int back; } que...
C
队列
2022-07-13
0
369
题解 | #栈(模板)#
用C语言实现栈,尽可能使用面向对象思想,不得不说C语言写起来不如C++顺手 #include <stdio.h> #include <string.h> #include <stdlib.h> #ifndef MAX #define MAX 100000 #en...
C
栈
2022-07-13
0
361
题解 | #栈(模板)#
用C语言实现栈,尽可能使用面向对象思想,不得不说C语言写起来不如C++顺手 #include <stdio.h> #include <string.h> #include <stdlib.h> #ifndef MAX #define MAX 100000 #en...
C
栈
2022-07-13
0
285
题解 | #打家劫舍(二)#
分情况讨论 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型...
动态规划
2022-07-12
0
259
题解 | #打家劫舍(一)#
C语言写吐了,不想写了。。。 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @ret...
C++
动态规划
2022-07-12
0
338
题解 | #明明的随机数#
这也能算hard题??利用哈希的思想轻松搞定。 #include <stdio.h> int main(int argc, char *argv[]) { int count = 0; int res[1000]; memset(res, -1, sizeof(res));...
C
字符串
哈希函数
2022-07-12
0
403
题解 | #字符串最后一个单词的长度#
明天联发科笔试。刷一下C语言哈哈 #include <stdio.h> int main(int argc, char *argv[]) { int res = 0; char ch; char blank = ' '; while ((ch = getchar()) ...
C
字符串
2022-07-12
23
2339
题解 | #最长的括号子串#
唉,心情全无。 难受啊。 class Solution { public: /** * * @param s string字符串 * @return int整型 */ int longestValidParentheses(string s...
字符串
动态规划
栈
2022-07-11
0
348
首页
上一页
5
6
7
8
9
10
11
12
13
14
下一页
末页