解题思路:
C内部自带全排列函数:
next_permutation(arr,arr+size); 求下一个全排列
prev_permutation(arr,arr+size); 求上一个全排列
The return value which is a bool type.
The global varible g_count set value 1;
注意事项:
参考代码:
#include <iostream> #include <algorithm> using namespace std; int g_count = 1; int main() { int index; cin >> index; int arr[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; do { if (index == g_count) { for (int i = 0; i<10; i++) { cout << arr[i]; } cout << endl; break; } g_count++; } while (next_permutation(arr, arr+10)); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:670 |
C语言训练-排序问题<2> (C++代码)浏览:936 |
C语言程序设计教程(第三版)课后习题8.9 (Java代码)浏览:1413 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1334 |
WU-小九九 (C++代码)浏览:1713 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)from DQM浏览:773 |
回文数字 (C语言代码)浏览:2539 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:590 |
1024题解浏览:879 |
Tom数 (C语言代码)浏览:758 |