leetcodepushfront-LeetCode-Notebook:阿巴阿阿阿巴

时间:2024-07-26 18:35:44
【文件属性】:

文件名称:leetcodepushfront-LeetCode-Notebook:阿巴阿阿阿巴

文件大小:2KB

文件格式:ZIP

更新时间:2024-07-26 18:35:44

系统开源

leetcode push front 力扣好题记录 15.三数之和 使用双指针法,用指针标定需要相加的数字 18.四数之和 与三数之和思路相似 96.不同搜索树(好题) 关键是在于轮询所有的动归数组 150.逆波兰表达式求值 其中用到了stoi函数LeetCode貌似不支持我自己实现了一个 long long StringToIntCore(const char *str,bool minus); int my_stoi(const char *str) { int num=0; if(str!=NULL&&*str!='\0') { bool minus = false; if(*str=='+') { str++; } else if(*str=='-') { str++; minus = true; } if(*str!='\0') { num = StringToIntCore(str,minus); } } return (int)num; } long long StringToIntCore(const char *str,bool minus) { long long


【文件预览】:
LeetCode-Notebook-main
----README.md(4KB)

网友评论