摘要:
1 #include 2 #include 3 4 using namespace std; 5 6 template 7 void printArray(T array[],int arrayLen) 8 { 9 if (arrayLen > 1) 10 { 11 cout 22 void randomPerm(T array[],int arrayLen) 23 { 24 if (arrayLen > 1) 25 { 26 T ex; 27 int rand1,rand2; 28 ... 阅读全文