1 /* 2 Permutations 3 排列组合 4 输入abc,输出所有可能的排列结果 5 输入:abc 6 输出: abc 7 acb 8 bac 9 bca 10 cab 11 cba 12 */ 13 14 #include15 16 using namespace std; 17 18 int c1=0; 19 int c2=0; 20 21 void show(char *p,int m) 22 { 23 for(int i=0;i<=m;i++) 24 cout<
VS2010运行结果: