//使用插入排序进行升序排列 #include int InsertSort(int A[], int n) { int i,j; for(i=2; i<=n; i++) { A[0]=A[i]; for(j=i-1; A[0]