C语言(第4版) 谭浩强 用指针数组处理上一题目,字符串不等长。

时间:2024-04-11 10:58:02

#include <stdio.h>
#include <string.h>
int main()
{void sort(char *[]);
 int i;
 char *p[10],str[10][20];
 for (i=0;i<10;i++)
   p[i]=str[i];       //为指针数组分配内存动态空间

 printf("input 10 strings:\n");
 for (i=0;i<10;i++)
   scanf("%s",p[i]);
 sort(p);
 printf("Now,the sequence is:\n");
 for (i=0;i<10;i++)
   printf("%s\n",p[i]);
 return 0;
 }
void sort(char *s[])
{int i,j;
 char *temp;
 for (i=0;i<9;i++)
   for (j=0;j<9-i;j++)
     if (strcmp(*(s+j),*(s+j+1))>0)
       {temp=*(s+j);
        *(s+j)=*(s+j+1);
        *(s+j+1)=temp;
       }
}

C语言(第4版) 谭浩强 用指针数组处理上一题目,字符串不等长。