Aether·Zhang
Aether·Zhang
全部文章
分类
未归档(9)
题解(20)
归档
标签
去牛客网
登录
/
注册
Aether·Zhang的博客
This too shall pass.
全部文章
(共28篇)
HJ33.整数与IP地址间的转换
HJ33.整数与IP地址间的转换 #include <iostream> #include <string> #include <sstream> #include <regex> #include <string.h> const in...
C++
C
字符串
数学
2022-02-21
15
1293
HJ23.删除字符串中出现次数最少的字符
HJ23.删除字符串中出现次数最少的字符 #include <iostream> #include <string> #include <unordered_map> const int INF = 0x3f3f3f3f; void deal(std::str...
C++
字符串
哈希表
2022-02-20
1
856
HJ20.密码验证合格程序
HJ20.密码验证合格程序 #include <iostream> #include <string> #include <unordered_set> const std::string OK = "OK"; const std::string NG = "N...
C++
字符串
数组
哈希表
2022-02-20
22
1366
HJ17.坐标移动
HJ17.坐标移动 解法一: #include <string> #include <sstream> #include <iostream> #include <vector> #include <unordered_map> #incl...
C++
C
字符串
哈希表
字符串匹配
2022-02-20
3
1361
NC68.跳台阶
NC68.跳台阶 class Solution { public: int jumpFloor(int number) { // f(1) = 1 // f(2) = 2 // f(n) = f(n - 1) + f(n - 2) ...
C++
数学
动态规划
2022-02-20
0
1927
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
485
HJ3.明明的随机数
HJ3.明明的随机数 解法一(偷懒解法): #include <iostream> #include <string> #include <set> int main(int argc, const char * argv[]) { int n, num...
C++
双指针
递归
有序集合
2022-02-19
4
504
HJ4.字符串分隔
HJ4.字符串分隔 #include <iostream> #include <string> #include <vector> const int CONST_LEN = 8; std::vector<std::string> make_str...
C++14
字符串
2022-02-18
0
433
HJ5.进制转换
HJ5.进制转换 #include <iostream> #include <string> #include <vector> #include <unordered_map> #include <cmath> const int DI...
C++14
数学
数组
哈希表
字符串
2022-02-18
0
849
NC61.两数之和
NC61.两数之和 class Solution { public: /** * * @param numbers int整型vector * @param target int整型 * @return int整型vector */ ...
哈希表
数组
2022-02-18
3
1655
首页
上一页
1
2
3
下一页
末页