摘要: 代码如下: 1 #include<stdio.h> 2 //快速排序函数,形参列表为数组,左指针位置,右指针位置,int *arr等价于int arr[] 3 void QkSort(int *arr, int left, int right){ 4 if (left > right) //左指针位 阅读全文
posted @ 2024-05-16 09:27 昆山皮皮虾 阅读(3) 评论(0) 推荐(0) 编辑