haishen2022
haishen2022
全部文章
分类
归档
标签
去牛客网
登录
/
注册
haishen2022的博客
全部文章
(共6篇)
题解 | #把字符串转换成整数(atoi)#
评论区巴拉的 这道题的意思是 “ a12”->0;" -12a12"->-12; int StrToInt(char* s ) { // write c...
C
2022-10-07
0
284
题解 | #最长回文子串#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param A string字符串 * @return ...
C
2022-10-07
1
294
题解 | #最小覆盖子串#
评论区巴拉出来的 ,还是想了很久 char* minWindow(char* S, char* T ) { /*hash T字符串*/ &n...
C
2022-10-07
2
286
题解 | #从上往下打印二叉树#
gap把我看糊涂了,写个简单的 #define MAX_SIZE 10001 int* levelOrder(struct TreeNode* root, int* returnSize){ ...
C
2022-10-04
0
263
题解 | #合法的括号字符串#
思路一: 顺着看,看右括号,每个右括号都有左括号或者*与之匹配 逆着看,看左括号,每个左括号都有右括号或者*与之匹配 bool isValidString(char* s ) { //&nb...
C
2022-09-12
0
324
题解 | #字符统计#
#include <stdio.h> #include <string.h> struct Hash { char ch; in...
C
2022-09-08
1
346