0个回答
相关问答
快速排序法
1个回答 2023-09-04 04:51
38,40,46,56,79,84 你可以试一下这个算法,C#的: private static void QuickSort(int[] R, int low, int high) { int pivotLoc = 0; if (low < high) { pivotLoc = Partition(R, low, high); QuickSort(R, low, pivotLoc - 1); QuickSort(R, pivotLoc + 1, high); foreach (object obj in R) { Console.Write(obj + " "); } Console.WriteLine("\n"); } } private static int Partition(int[] R, int low, int high) { int temp = R[low]; while (low < high) { if (low < high && temp
有病啊算不算脏话?
1个回答 2023-09-04 07:03
虽然不带脏字,真的是伤害性不大,侮辱性极强

热门问答

热门搜索 更多>