《數據結構》-歸併排序

#include<iostream> using namespace std; int a[] = { 1, 0, 3, 4, 6, 5, 7, 2 }; int tmp[8]; // 歸併排序(C-遞歸版) //void merge_sort_recursive(int arr[], int reg[], int start, int end) { // if (start >= end) /
相關文章
相關標籤/搜索