Aether·Zhang
Aether·Zhang
全部文章
分类
未归档(9)
题解(20)
归档
标签
去牛客网
登录
/
注册
Aether·Zhang的博客
This too shall pass.
全部文章
(共8篇)
NC52.有效括号序列
NC52.有效括号序列 class Solution { public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(const string& s) {...
C++
栈
哈希表
2022-02-21
0
977
HJ8.合并表记录
HJ8.合并表记录 #include <iostream> #include <map> int main() { int num = 0; int key = 0, val = 0; std::map<int, int> dict; ...
C++
哈希表
2022-02-21
0
593
HJ23.删除字符串中出现次数最少的字符
HJ23.删除字符串中出现次数最少的字符 #include <iostream> #include <string> #include <unordered_map> const int INF = 0x3f3f3f3f; void deal(std::str...
C++
字符串
哈希表
2022-02-20
1
914
HJ20.密码验证合格程序
HJ20.密码验证合格程序 #include <iostream> #include <string> #include <unordered_set> const std::string OK = "OK"; const std::string NG = "N...
C++
字符串
数组
哈希表
2022-02-20
23
1420
HJ17.坐标移动
HJ17.坐标移动 解法一: #include <string> #include <sstream> #include <iostream> #include <vector> #include <unordered_map> #incl...
C++
C
字符串
哈希表
字符串匹配
2022-02-20
3
1423
HJ10.字符个数统计
HJ10.字符个数统计 #include <string> #include <iostream> const int LEN = 128; int cnt_ch(std::string s) { int ch[LEN]; for (int i = 0; ...
C++
哈希表
字符串
数组
2022-02-19
0
530
HJ5.进制转换
HJ5.进制转换 #include <iostream> #include <string> #include <vector> #include <unordered_map> #include <cmath> const int DI...
C++14
数学
数组
哈希表
字符串
2022-02-18
0
966
NC61.两数之和
NC61.两数之和 class Solution { public: /** * * @param numbers int整型vector * @param target int整型 * @return int整型vector */ ...
哈希表
数组
2022-02-18
4
1977