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: int movingCount(int threshold, int rows, int cols) { //生成一个矩阵,里面所有的值置为0为没走过,-1为走不了,1为走了的; vector<...
剑指offer
递归
C++
回溯
2019-09-21
0
870