标签:
Meta-Loopless Sorts |
Sorting holds an important place in computer science. Analyzing and implementing various sorting algorithms forms an important part of the education of most computer scientists, and sorting accounts for a significant percentage of the world‘s computational resources. Sorting algorithms range from the bewilderingly popular Bubble sort, to Quicksort, to parallel sorting algorithms and sorting networks. In this problem you will be writing a program that creates a sorting program (a meta-sorter).
The problem is to create several programs whose output is a standard Pascal program that sorts n numbers where n is the only input to the program you will write. The Pascal programs generated by your program must have the following properties:
For those unfamiliar with Pascal syntax, the example at the end of this problem completely defines the small subset of Pascal needed.
The input consist on a number in the first line indicating the number M of programs to make, followed by a blank line. Then there are M test cases, each one consisting on a single integer n on a line by itself with 1 n 8. There will be a blank line between test cases.
The output is M compilable standard Pascal programs meeting the criteria specified above. Print a blank line between two consecutive programs.
1 3
program sort(input,output); var a,b,c : integer; begin readln(a,b,c); if a < b then if b < c then writeln(a,b,c) else if a < c then writeln(a,c,b) else writeln(c,a,b) else if a < c then writeln(b,a,c) else if b < c then writeln(b,c,a) else writeln(c,b,a) end.
Miguel Revilla 2001-05-25 推荐博客:http://www.cnblogs.com/java20130723/p/3212108.html 代码:(没有缩进处理)
1 #include <cstdio> 2 const int maxn = 10; 3 4 int n, arr[maxn]; 5 6 void insert_sort(int p, int c) { //插入排序 7 for (int i = c; i > p; i--) 8 arr[i] = arr[i - 1]; 9 arr[p] = c; 10 } 11 12 int dfs(int d) { 13 int tmp[d + 1]; //创建数组储存原来的数值,不然会乱掉 14 for (int j = 1; j <= n; j++) 15 tmp[j] = arr[j]; 16 for (int i = d; i >= 1; i--) { //循环从现排好的串后序进行dfs 17 printf("if %c < %c then\n", arr[i] + ‘a‘ - 1, d + ‘a‘); 18 insert_sort(i + 1, d + 1); //将接下去的字母插入到i+1的位置 19 if (d + 1 == n) { //dfs到最深处,输出 20 printf("writeln("); 21 printf("%c", arr[1] + ‘a‘ - 1); 22 for (int j = 2; j <= d + 1; j++) 23 printf(",%c", arr[j] + ‘a‘ - 1); 24 printf(")\n"); 25 printf("else\n"); 26 } 27 else { 28 dfs(d + 1); 29 printf("else\n"); 30 } 31 for (int j = 1; j <= n; j++) //还原数组 32 arr[j] = tmp[j]; 33 } 34 insert_sort(1, d + 1); //下面是对最后一个情况,即字母插到整个数组前面,这里是没有else的 35 if (d + 1 == n) { 36 printf("writeln("); 37 printf("%c", arr[1] + ‘a‘ - 1); 38 for (int j = 2; j <= d + 1; j++) 39 printf(",%c", arr[j] + ‘a‘ - 1); 40 printf(")\n"); 41 } 42 else 43 dfs(d + 1); 44 for (int i = 1; i <= n; i++) 45 arr[i] = tmp[i]; 46 } 47 48 int main() { 49 int t; 50 scanf("%d", &t); 51 while (t--) { 52 scanf("%d", &n); 53 //前面部分 54 printf("program sort(input,output);\nvar\n"); 55 printf("a"); 56 for (int i = 2; i <= n; i++) 57 printf(",%c", i + ‘a‘ - 1); 58 printf(" : integer;\nbegin\nreadln("); 59 printf("a"); 60 for (int i = 2; i <= n; i++) 61 printf(",%c", i + ‘a‘ - 1); 62 printf(");\n"); 63 dfs(0); //开始深搜 64 printf("end.\n"); 65 if (t != 0) 66 printf("\n"); 67 } 68 return 0; 69 }
Uva 110 - Meta-Loopless Sorts(!循环,回溯!)
标签:
原文地址:http://www.cnblogs.com/zpfbuaa/p/5049541.html