Aether·Zhang
Aether·Zhang
全部文章
分类
未归档(9)
题解(20)
归档
标签
去牛客网
登录
/
注册
Aether·Zhang的博客
This too shall pass.
全部文章
(共5篇)
LeetCode 674. 最长连续递增序列
LeetCode 674. 最长连续递增序列 class Solution { public: int findLengthOfLCIS(vector<int>& nums) { int sz = (int)nums.size(); int...
C++
数组
2022-02-28
0
424
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
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