挑战 200 分 数列非递归全排列函数
问题描述:
挑战 200 分 数列非递归全排列函数
答
我用的是"递增进位制数法"(方法源自网上)下面是C语言的:#include #include #include #include main(){ int i,j,n=9,postion; int *a,*flag,*p; long m=0,fun_m=1; time_t start,end; system("cls"); a=(int *)calloc...