2-路归并排序

//两个有序子序列合并成一个子序列 ElemType* B = (ElemType*)malloc((n + 1) * sizeof(ElemType)); void Merge(ElemType A[], int low, int mid, int high) { int i, j; for (i
posted @ 2021-09-05 21:28  #Lorraine#  阅读(39)  评论(0编辑  收藏  举报