使用此代码,我必须计算所进行的元素比较的数量。话虽如此,我不确定比较是在sort()方法的for循环内,还是在less()方法内完成。非常感谢你的帮助。
public class Shell {
private static int compares;
// This class should not be instantiated.
private Shell() { }
/**
* Rearranges the array in ascending order, using the natural order.
* @param a the array to be sorted
*/
public static void sort(Comparable[] a) {
int n = a.length;
// 3x+1 increment sequence: 1, 4, 13, 40, 121, 364, 1093, ...
int h = 1;
while (h < n/3) h = 3*h + 1;
while (h >= 1) {
// h-sort the array
for (int i = h; i < n; i++) {
for (int j = i; j >= h && less(a[j], a[j-h]); j -= h) {
exch(a, j, j-h);
}
}
assert isHsorted(a, h);
h /= 3;
}
assert isSorted(a);
}
/ ********************************************** ***************************** *助手排序功能。 ************************************************** ******** /
// is v < w ?
private static boolean less(Comparable v, Comparable w) {
return v.compareTo(w) < 0;
}
// exchange a[i] and a[j]
private static void exch(Object[] a, int i, int j) {
Object swap = a[i];
a[i] = a[j];
a[j] = swap;
}
/ ********************************************** ***************************** *检查数组是否已排序 - 对调试很有用。 ************************************************** ************************ /
private static boolean isSorted(Comparable[] a) {
for (int i = 1; i < a.length; i++)
if (less(a[i], a[i-1])) return false;
return true;
}
// is the array h-sorted?
private static boolean isHsorted(Comparable[] a, int h) {
for (int i = h; i < a.length; i++)
if (less(a[i], a[i-h])){
return false;
}
return true;
}
// print array to standard output
private static void show(Comparable[] a) {
for (int i = 0; i < a.length; i++) {
StdOut.println(a[i]);
}
}
/**
* Reads in a sequence of strings from standard input; Shellsorts them;
* and prints them to standard output in ascending order.
*
* @param args the command-line arguments
*/
public static void main(String[] args) {
String[] a = StdIn.readAllStrings();
Shell.sort(a);
show(a);
}
}
答案 0 :(得分:0)
鉴于您的代码看起来像是经典学生的练习,可能要求您只计算less
函数在sort
内部调用时所做的元素比较次数less
1}}功能。如果我错了,请更新您的问题,添加更完整的目标说明。
如您所见,每次调用less
函数时都会进行比较。但是在你的代码中,less
甚至是比较两个对象的常用方法。因此,只有在sort
方法中直接调用isSorted
函数时才应该计算。其他情况isHsorted
和lessWithCounter
只是因为断言。
为了清楚起见,断言是Java编程语言中的一种语句,使您能够测试有关程序的假设。
请记住,这是你的练习,所以你不应该四处寻找一个简单的答案,我也不会写任何详细的代码解决方案。
但我可以给你另一个建议,你可以尝试创建一个新方法less
代表sort
调用read.table
方法。