数据结构(线性表的顺序存储结构)

2024-12-16 07:02:57
推荐回答(1个)
回答1:

这是我自己写的,在VC6.0下通过了,你看看吧:
typedef DataType int;
void swap(DataType &x,DataType &y)
{
DataType temp;
temp=x;x=y;y=temp;
}

void reverser_order(DataType a[],int n)
{
int i=0;
int j=n-1;
while(i<=j)
{
swap(a[i],a[j]);
i++;
j--;
}
}