原创 普通遞歸算法:輸出n個數的所有全排列

#include<iostream> using namespace std; void Permutation(int a); int main() { Permutation(5); return 0; } void Print(