whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共2篇)
next_permutation的源代码解析
一、迭代写法 算法来自STL源代码 bool myNext( string::iterator First, string::iterator Last ) { if( First==Last ) { return false; } string...
next_permutation
2021-03-10
0
698
next_permutaiton例题
#include<bits/stdc++.h> using namespace std; static const int maxn=1e5+5; char solve[maxn]; int main() { while( ~scanf("%s",solve) ) {...
next_permutation
2020-12-08
0
535