码迷,mamicode.com
首页 > 编程语言 > 详细

习题8-7 字符串排序

时间:2019-12-20 15:19:20      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:输入   维数   sorted   mamicode   clu   技术   数组   图片   sort   

技术图片

 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 int main(void)
 5 {
 6     char str[5][80]; //二维数组保存5个字符串
 7     int i, j;
 8 
 9     for (i = 0; i < 5; i++)
10     {
11         scanf("%s", str[i]); //输入5个字符串
12     }
13 
14     for (i = 0; i < 4; i++)
15     {
16         int index = i;
17         for (j = i + 1; j < 5; j++)
18         {
19             if (strcmp(str[index], str[j]) > 0)
20             {
21                 index = j;
22             }
23         }
24         if (i != index)
25         {
26             char t[80];
27             strcpy(t, str[index]); //交换字符串
28             strcpy(str[index], str[i]);
29             strcpy(str[i], t);
30         }
31     }
32 
33     printf("After sorted:\n");
34     for (i = 0; i < 5; i++)
35     {
36         puts(str[i]);
37     }
38 
39     return 0;
40 }

习题8-7 字符串排序

标签:输入   维数   sorted   mamicode   clu   技术   数组   图片   sort   

原文地址:https://www.cnblogs.com/2018jason/p/12073154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!