[求助]请各位热心的人们帮帮我把!!!
void InsertSort(struct ElemType A[[],int n){struct ElemType x;
int i,j;
for(i=1;i<n;i++){
x=A[i];
for(j=i-1;j>=0;j--)
if(x.stn<A[j].stn)
A[j+1]=A[j];
else
break;
A[j+1]=x;
}
}
在此算法中A[j+1]=A[j]是向前移还是向后移???????????