作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试使用快速排序和自下而上合并排序来做一个项目,但我坚持快速排序。我已经能够想出一些代码,但是每当我尝试运行我的程序时,我都会收到错误“quickSort(int[],int,int) in sort无法应用于(int[])”有什么提示吗?这是代码...
import java.util.Random;
public class main {
public static void main(String[] args) {
Random gen = new Random();
int[] a = new int[20];
for (int i = 0; i < a.length; i++)
a[i] = gen.nextInt(100);
printArray(a);
quickSort(a);
}
private static void printArray(int[] a){
for (int i : a)
System.out.print(i + " ");
System.out.println("");
}
private static void quickSort(int a[], int left, int right){
int i = left, j = right;
int tmp;
int pivot = a[(left + right) / 2];
while (i <= j) {
while (a[i] < pivot)
i++;
while (a[j] > pivot)
j--;
if (i <= j) {
tmp = a[i];
a[i] = a[j];
a[j] = tmp;
i++;
j--;
}
}
if (left < j)
quickSort(a, left, j);
if (i < right)
quickSort(a, i, right);
}
最佳答案
您的 quickSort
函数采用三个参数,但您仅使用一个参数来调用它。
关于java - 分拣项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9763598/
我是一名优秀的程序员,十分优秀!