当前位置:   article > 正文

在主函数中输入10个等长的字符串。用另一函数对它们 排序。然后在主函数输出这10个已排好序的字符串。 要求采用指向一维数组的指针作函数参数,该排序函数 的声明如下:void sort(char (*s

在主函数中输入10个等长的字符串

在主函数中输入10个等长的字符串。用另一函数对它们排序。然后在主函数输出这10个已排好序的字符串。要求采用指向一维数组的指针作函数参数,该排序函数的声明如下:void sort(char (*s)[20]);

思路:
1.输入字符串
2.使用冒泡法进行排序
3.输出

#include <stdio.h>
#include <string.h>
#define num 10
char zfc[20][20];
void sort(char *s[20]); // 指针数组
int main()
{  
   char *str[20];
   int i;
   
   for(i=0; i<num; i++)
	   str[i] = zfc[i];
   for(i=0; i<num; i++)
       scanf("%s", str[i]);
   sort(str);
   
return 0;
}

void sort(char *s[20])
{
     int i,j;
	 char *temp;

	 for(i=0; i<num-1; i++)
		 for(j=0; j<num-1-i; j++)
		 {
		     if(strcmp(*(s+j), *(s+j+1)) > 0)
			 {
			     temp = *(s+j);    
				 *(s+j) = *(s+j+1);
				 *(s+j+1) = temp;
			 }
		 }
	 for(i=0;i<num;i++)
		 printf("%s\n",s[i]); 
}
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/293023
推荐阅读
相关标签
  

闽ICP备14008679号