SROMEI
SROMEI
全部文章
题解
C++(3)
归档
标签
去牛客网
登录
/
注册
SROMEI的脱发日记
我变秃了,也变强了
全部文章
/ 题解
(共2篇)
[剑指offer 编程题] 字符串的排列
class Solution { public: vector<string> Permutation(string str) { if(str.length() == 0)return this->result; int cho...
剑指offer
C++
string
C++标准库
C++11
STL
回溯
2019-10-20
0
629
[剑指offer 编程题]滑动窗口的最大值
class Solution { public: vector<int> maxInWindows(const vector<int>& num, unsigned int size) { vector<int> resul...
剑指offer
C++
STL
vector
2019-09-18
3
1013