当前位置:   article > 正文

在主函数输入10个等长的字符串,用另一函数对他们排序, 然后在主函数输出这10个已经排好序的字符串。_在主函数中输入10个等长的字符串。用另一个函数对它们排序,然后在主函数输出这10

在主函数中输入10个等长的字符串。用另一个函数对它们排序,然后在主函数输出这10

在主函数输入10个等长的字符串,用另一函数对他们排序,然后在主函数输出这10个已经排好序的字符串。

  • 代码如下:
  • 普通做法:
#include<stdio.h>
#include<string.h>
void sort(char a[10][6]);
int main()
{
    char a[10][6];
    int i=0;
    printf("input 10 string!\n");
    for(i=0;i<10;i++){
        scanf("%s",a[i]);
    }
    printf("now!\n")
    sort(a);
    for(i=0;i<10;i++){
        printf("%s\n",a[i]);
    }
    return 0;
}
void sort(char a[10][6])
{
    char *p,s[10];
    p=s;
    int i,j;
    for(i=0;i<9;i++){
        for(j=0;j<9-i;j++){
            if(strcmp(a[j],a[j+1])>0){
                strcpy(p,a[j]);
                strcpy(a[j],a[j+1]);
                strcpy(a[j+1],p);
            }
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 利用指针数组做:
/* 利用指针数组做上一道题*/
#include<stdio.h>
#include<string.h>
#define N 10   //宏定义
void sort(char *a[]);
int main()
{
    int i;
    char *p[N],a[N][20];
    for(i=0;i<N;i++){
        p[i]=a[i];
    }
    printf("please input string:\n");
    for(i=0;i<N;i++){
        scanf("%s",p[i]);
    }
    sort(p);
    printf("now the sequence is:\n");
    for(i=0;i<N;i++){
        printf("%s\n",p[i]);
    }
    return 0;
}
void sort(char *a[])
{
    int i,j;
    char *temp;
    for(i=0;i<N-1;i++){
        for(j=0;j<N-1-i;j++){
            if(strcmp(*(a+j),*(a+j+1))>0){
                temp=*(a+j);
                *(a+j)=*(a+j+1);
                *(a+j+1)=temp;
            }
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

在这里插入图片描述

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号