请教高手!帮忙改成指针的!
#include <iostream.h>#include <string.h>
void sort( char **p,int n)
{
char p1[30]; //这里怎么改成指针?是不是不能改成指针
for(int i=0;i<n-1;i++)
{
for(int j=i+1;j<n;j++)
{
if(strcmp(*(p+i),*(p+j))>0)
{
strcpy(p1,*(p+i));
strcpy(*(p+i),*(p+j));
strcpy(*(p+j),p1);
}
}
}
}
int main()
{
int n;
cout<<"你要输入多个字符串";
cin>>n;
char **p= new char*[n];
for(int i=0; i<n; i++)
{
*(p+i)=new char;
cin>>*(p+i);
}
// for(int j=0;j<n;j++)
// {
// cout<<*(p+j)<<endl;
// }
sort(p,n);
cout<<"排序后为:"<<endl;
for(int k=0; k<n; k++)
{
cout<<*(p+k)<<endl;
}
return 0;
}