void SeqInvert(ElemType a[ ],int n)∥a是具有n个元素用一维数组存储的线性表,本算法将其逆置。 { ElemType t; for(i=0;i<=(n-1)/2;i++) {t=a[i];a[i]= a[n-1-i];a[n-1-i]=t;} }∥算法结束