试用一个算法,实现顺序表的就地逆置,

2024-11-20 23:20:07
推荐回答(1个)
回答(1):

int a[n]; //....
for(int i=0;i{
int t=a[i];
a[i]=a[10-i-1];
a[10-i-1]=t;
}