C语言—字符串排序

作者:追风剑情 发布于:2019-11-11 19:36 分类:C

示例

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. #define SIZE 81 // 限制字符串长度,包括\0
  8. #define LIM 20 // 可读入的最大行数
  9. #define HALT "" // 空字符串停止输入
  10.  
  11. void stsrt(char *strings [], int num); /* 字符串排序函数 */
  12. char * s_gets(char * st, int n);
  13.  
  14. //argc: 参数个数 argv[]: 参数数组
  15. int main(int argc, char *argv[])
  16. {
  17. char input[LIM][SIZE]; //储存输入的数组
  18. char *ptstr[LIM]; //内含指针变量的数组
  19. int ct = 0;
  20. int k;
  21.  
  22. printf("Input up to %d lines, and I will sort them.\n", LIM);
  23. printf("To stop, press the Enter key at a line's start.\n");
  24. while (ct < LIM && s_gets(input[ct], SIZE) != NULL
  25. && input[ct][0] != '\0')
  26. {
  27. ptstr[ct] = input[ct]; //设置指针指向字符串
  28. ct++;
  29. }
  30. stsrt(ptstr, ct);
  31. puts("\nHere's the sorted list:\n");
  32. for (k = 0; k < ct; k++)
  33. puts(ptstr[k]);
  34.  
  35. putchar('\n');
  36.  
  37. system("pause");
  38. return 0;
  39. }
  40.  
  41. char * s_gets(char * st, int n)
  42. {
  43. char * ret_val;
  44. int i = 0;
  45. ret_val = fgets(st, n, stdin);
  46. if (ret_val) //即,ret_val != NULL
  47. {
  48. while (st[i] != '\n' && st[i] != '\0')
  49. i++;
  50. if (st[i] == '\n')
  51. st[i] = '\0';
  52. else
  53. while (getchar() != '\n')
  54. continue;
  55. }
  56. return ret_val;
  57. }
  58.  
  59. /* 字符串-指针-排序函数 */
  60. void stsrt(char *strings[], int num)
  61. {
  62. char *temp;
  63. int top, seek;
  64. for (top = 0; top < num - 1; top++)
  65. for (seek = top + 1; seek < num; seek++)
  66. //利用字符串比较函数
  67. if (strcmp(strings[top], strings[seek]) > 0)
  68. {
  69. temp = strings[top];
  70. strings[top] = strings[seek];
  71. strings[seek] = temp;
  72. }
  73. }

运行测试
1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号