摘要:
做一件事,要先想好思路,然后再制定一个方案,最后再解决它,写程序也是如此。 全排列有两种实现方式,一种是递归分治,另一种是字典序法。前者代码简洁,思维简单,但是耗费内存资源过大,并且不懂递归原理的人看... 阅读全文
摘要:
#includeusing namespace std;#define M 9int tempData[9 * 8 * 7 * 6 * 5 * 4 * 3 * 2][M] = {0};void sort(int ... 阅读全文