C#幾種排序

void Start() { List<int> ints = new List<int>() {5, 8, 7, 2, 1, 4, 6}; BubbleSort(ints); //使用簡單選擇排序法 //SimpleSort(ints); //使用快速排序法 //QuickSort(ints, 0, ints.Count
相關文章
相關標籤/搜索