c語言指針實現快速排序

#include<stdio.h> #include<stdlib.h> int Partition(int *Array,int i,int j) { int t = *(Array + i); while(i<j) { while(i<j && *(Array+j)>=t) j--;
相關文章
相關標籤/搜索