zoukankan      html  css  js  c++  java
  • UVA 110 Meta-Loopless Sorts(输出挺麻烦的。。。)

     Meta-Loopless Sorts 

     

    Background 

    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 

    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:

     

    • They must begin with program sort(input,output);

       

    • They must declare storage for exactly n integer variables. The names of the variables must come from the first n letters of the alphabet (a,b,c,d,e,f).

       

    • A single readln statement must read in values for all the integer variables.

       

    • Other than writeln statements, the only statements in the program are if then else statements. The boolean conditional for each if statement must consist of one strict inequality (either < or >) of two integer variables. Exactly n! writeln statements must appear in the program.

       

    • Exactly three semi-colons must appear in the programs
      1. after the program header: program sort(input,output);

         

      2. after the variable declaration: ...: integer;

         

      3. after the readln statement: readln(...);

       

    • No redundant comparisons of integer variables should be made. For example, during program execution, once it is determined that ab, variables a and b should not be compared again.

       

    • Every writeln statement must appear on a line by itself.

       

    • The programs must compile. Executing the program with input consisting of any arrangement of any n distinct integer values should result in the input values being printed in sorted order.

    For those unfamiliar with Pascal syntax, the example at the end of this problem completely defines the small subset of Pascal needed.

     

    The Input 

    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  $ leq$ n $ leq$ 8 . There will be a blank line between test cases.

     

    The Output 

    The output is M compilable standard Pascal programs meeting the criteria specified above. Print a blank line between two consecutive programs.

     

    Sample Input 

    1
    
    3
    

     

    Sample Output 

    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.

    题意:就是模拟pascal用if,else进行排序。。输入n。输出n个字母的排序过程

    思路:大概就是插入排序。一个字母一个字母插进去。每个字母都可以插到当前串的各个位置中去。。。进行回溯输出即可。。但是这输出格式真的挺麻烦的啊啊啊

    #include <stdio.h>
    #include <string.h>
    
    int t, n, i;
    int cc[10];
    void swap(int &a, int &b)
    {
    	int t = a;
    	a = b;
    	b = t;
    }
    void insert(int num, int *cc) {
    	int i;
    	if (num == n)
    	{
    		int nu = num * 2;
    		while (nu --) {printf(" "); }
    		printf("writeln(");
    		for (i = 0; i < n - 1; i++) {
    			printf("%c,", cc[i] + 'a');
    		}
    		printf("%c)
    ", cc[n - 1] + 'a');
    			return;
    	}
    	int c[10];
    	for (i = 0; i < num; i ++)
    		c[i] = cc[i];
    	for (i = num; i >= 0; i --) {
    		if (num == i) {
    			int nu = num * 2;
    			while (nu --) {printf(" "); }
    			c[i] = i;
    			printf("if %c < %c then
    ", c[i - 1] + 'a', num + 'a');
    			insert(num + 1, c);
    		}
    		else if (i == 0) {
    			int nu = num * 2;
    			while (nu --) {printf(" "); }
    			printf("else
    ");
    			swap(c[i], c[i + 1]);
    			insert(num + 1, c);
    		}
    		else {
    			int nu = num * 2;
    			while (nu --) {printf(" "); }
    			printf("else if %c < %c then
    ", c[i - 1] + 'a', num + 'a');
    			swap(c[i], c[i + 1]);
    			insert(num + 1, c);
    		}
    	}
    }
    void out() {
    	printf("program sort(input,output);
    ");
    	printf("var
    ");
    	for (i = 0; i < n - 1; i++) {
    		printf("%c,",'a' + i);
    	}
    	printf("%c : integer;
    ", 'a' + n - 1);
    	printf("begin
    ");
    	printf("  readln(");
    	for (i = 0; i < n - 1; i++) {
    		printf("%c,",'a' + i);
    	}
    	printf("%c);
    ", 'a' + n - 1);
    	insert(1, cc);
    	printf("end.
    ");
    	if (t) printf("
    ");
    }
    
    int main() {
    	scanf("%d", &t);
    	while (t --) {
    		memset(cc, 0, sizeof(cc));
    		scanf("%d", &n);
    		out();
    	}
    	return 0;
    }


  • 相关阅读:
    vscode终端无法使用webpack命令
    vscode 常用配置
    git中fatal: Authentication failed的问题
    vue项目初始化步骤
    Windwos安装Node.js和npm的详细步骤
    node安装教程,全局安装vue,webpack/cli,创建一个vue项目(详细步骤)
    VsCode 自动生成文件头部注释和函数注释
    微信小程序使用字体图标
    微信小程序第三方框架
    查看最近访问的文件目录或文件
  • 原文地址:https://www.cnblogs.com/pangblog/p/3253656.html
Copyright © 2011-2022 走看看