思路:
(1)将输入的字符数组转化为整数数组;
(2)使用qsort()函数将整数数组进行从小到大的快排;
(3)使用next_permutation()函数依次求出下一个排序。
next_permutation()函数需要引入头文件algorithm。
next_permutation有两个参数,第一个参数为数组的地址,第二个参数为该数组排序的最后一个位置的地址。
eg:
int arr[3];
for(int i = 0; i < 3; i++){
arr[i] = 3 - i;
}
next_permutation(arr, arr + 3);
如果存在a之后的排列,就返回true,否则返回false。
所以输出可以写成:
do {
for(int i = 0; i < strlen(arr); i++){
cout << arr[i];
}
cout << endl;
}while(next_permutation(arr, arr + strlen(arr)));