小菲柱
小菲柱
全部文章
题解
个人笔记(5)
笔试练习(7)
面试整理(4)
归档
标签
去牛客网
登录
/
注册
小菲柱的博客
备战秋招~个人博客暂不更新
全部文章
/ 题解
(共4篇)
题解 | #字符串变形#
毫无状态 class Solution { public: string trans(string s, int n) { if (n == 0) { return s; } for (int i = 0; i < n;...
C++
C
字符串
2022-07-14
1
377
题解 | #买卖股票的最好时机(一)#
贪心加动态规划 C++版本 class Solution { public: /** * * @param prices int整型vector * @return int整型 */ int maxProfit(vector<in...
C
C++
贪心
动态规划
2022-07-14
0
294
题解 | #明明的随机数#
这也能算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