whoway
whoway
全部文章
分类
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
题解(126)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
TA的专栏
30篇文章
0人订阅
C语言三剑客
6篇文章
60人学习
第4章-”语义分析“
C和C++
8篇文章
1540人学习
二次训练STL
12篇文章
1147人学习
数学
4篇文章
1395人学习
全部文章
(共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
540