首页 > 其他 > 详细

一种全排列

时间:2014-06-19 13:10:24      阅读:487      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
 1 #include<iostream>
 2 #include<ctime>
 3 using namespace std;
 4 
 5 #define N 4
 6 
 7 void fullarrange(char num[], int len, int index) {
 8     if(index == len) {
 9         cout << num << " ";
10         return;
11     }
12     for(int i = 0; i < 10; i++) {
13         num[index] = 0 + i;
14         fullarrange(num, len, index+1);
15     }
16 }
17 
18 int main()
19 {
20     char num[N];
21     memset(num, 0, N);
22     num[N-1] = \0;
23     for(int i = 0; i < 10; i++) {
24         num[0] = i + 0;
25         fullarrange(num, N-1, 1);
26     }
27     return 0;
28 }
bubuko.com,布布扣

 

一种全排列,布布扣,bubuko.com

一种全排列

原文:http://www.cnblogs.com/wanghui390/p/3771908.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!