Aether·Zhang
Aether·Zhang
全部文章
分类
未归档(9)
题解(20)
归档
标签
去牛客网
登录
/
注册
Aether·Zhang的博客
This too shall pass.
全部文章
(共3篇)
HJ33.整数与IP地址间的转换
HJ33.整数与IP地址间的转换 #include <iostream> #include <string> #include <sstream> #include <regex> #include <string.h> const in...
C++
C
字符串
数学
2022-02-21
17
1322
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
2055
HJ5.进制转换
HJ5.进制转换 #include <iostream> #include <string> #include <vector> #include <unordered_map> #include <cmath> const int DI...
C++14
数学
数组
哈希表
字符串
2022-02-18
0
967