内存三种模型-第二种
void printstr(char (*buf)[20],int nsize)
{
for (int i = 0; i < nsize;i++)
{
printf("%s ",buf[i]);
}
}
void sortstr(char (*buf)[20], int nsize)
{
for (int i = 0; i < nsize-1;i++)
{
for (int j = 0; j < nsize-i - 1;j++)
{
if (strcmp(buf[j],buf[j+1]) >0 )
{
char temp[20] = {0};
strcpy(temp, buf[j + 1]);
strcpy(buf[j + 1], buf[j]);
strcpy(buf[j], temp);
}
}
}
}
void main()
{
//数组指针
char buf[10][20] = { "aaa", "ccc", "eee", "ddd", "bbb" };
printstr(buf,5);
sortstr(buf, 5);
printf("\n排序之后:\n");
printstr(buf, 5);
printf("\n");
system("pause");
}
结果: