原创 快速排序,歸併排序算法模板

快速排序算法模板 void quick_sort(int q[], int l, int r) { if(l >= r) return ; int i = l - 1, j = r + 1, x = q[