next_permutation函数

next_permutation函数

1.头文件:

2.基本格式

int a[MA];
do{
    
}while(next_permutation(a,a+n));

注意函数按字典序递增的顺序输出,字典序小于初始顺序的排列不会输出,若想要完整全排列,则要在初始时sort排序

上一篇:LeetCode - Next Permutation


下一篇:暴力算法:排列生成