我在Java中创建了一个Bubble排序算法的实现。代码运行正常并提供有效输出,但是,出于某种原因,当我按升序对数据进行排序时,它正在正确地执行,但是当我尝试打印语句时遇到问题。下面是我的代码,以及稍微更好的问题描述!
import java.util.Arrays;
import java.util.Scanner;
//import java.util.regex.Pattern;
//import java.util.stream.Stream;
public class BubbleSortNumeric {
public static void main (String [] args) {
Integer [] unsortedData = getDataInput();
Integer [] sortedDataAscending;
Integer [] sortedDataDescending;
long start = System.nanoTime();
sortedDataAscending = bubbleSortAscending(unsortedData);
sortedDataDescending = bubbleSortDescending(unsortedData);
long stop = System.nanoTime();
System.out.println("Ascending: " + Arrays.toString(sortedDataAscending));
System.out.println("Descening: " + Arrays.toString(sortedDataDescending));
System.out.println("Execution time: " + ((stop - start) / 1e+6) + "ms.");
}
private static Integer [] getDataInput() {
System.out.println("Enter a set of integers seperated by a space.");
Integer [] userInput = {};
String strInput;
try(Scanner sc = new Scanner(System.in)) {
strInput = sc.nextLine();
}
String [] inputData = strInput.split("\\s+");
try {
userInput = Arrays.asList(inputData).stream().map(Integer::valueOf).toArray(Integer[]::new);
}catch(NumberFormatException e) {
System.out.println("ERROR. Invalid input.\n" + e.getMessage());
}
return userInput;
}
private static Integer [] bubbleSortAscending(Integer[] ascendingUnsorted) {
int n = ascendingUnsorted.length;
System.out.println(n);
if(n == 1) {
return ascendingUnsorted;
}
boolean swapped;
int temp;
do {
swapped = false;
for(int i = 1; i < n; i++) {
if(ascendingUnsorted[i - 1] > ascendingUnsorted[i]) {
temp = ascendingUnsorted[i - 1];
ascendingUnsorted[i - 1] = ascendingUnsorted[i];
ascendingUnsorted[i] = temp;
swapped = true;
}
}
n--;
}while(swapped == true);
return ascendingUnsorted;
}
private static Integer [] bubbleSortDescending(Integer [] descendingUnsorted) {
int n = descendingUnsorted.length;
if(n == 1) {
return descendingUnsorted;
}
boolean swapped;
int temp;
do {
swapped = false;
for(int i = 1; i < n; i++) {
if(descendingUnsorted[i - 1] < descendingUnsorted[i]) {
temp = descendingUnsorted[i];
descendingUnsorted[i] = descendingUnsorted[i - 1];
descendingUnsorted[i - 1] = temp;
swapped = true;
}
}
n--;
}while(swapped == true);
return descendingUnsorted;
}
}
当我调用bubbleSortAscending
时,它工作正常,并按升序对数据进行排序。因为我正在计算程序的执行时间,所以我不想在按降序排序数据之前打印出结果。
我的问题是,虽然两种方法都可以正常工作,但在打印结果时遇到问题。下面是一个例子:
输入
1 3 9 2 40 193
输出:
升序:[193,40,9,3,2,1]
Descening:[193,40,9,3,2,1]
执行时间:0.527142ms。
如果我要将print语句移到行sortedDataAscending = bubbleSortAscending(unsortedData);
之后,那么它会给出正确的输出,但是,正如我已经说过的那样,我不希望这样。
所以我的问题,即使我将结果归结为两个不同的变量,为什么当我打印两个变量的答案时,输出是否相同?
答案 0 :(得分:3)
您必须复制输入数组,因为在Java中您将值作为引用传递而不是复制:
public class BubbleSortNumeric {
public static void main (String [] args) {
Integer [] unsortedData1 = getDataInput();
Integer [] unsortedData2 = new Integer[unsortedData1.length];
System.arraycopy(unsortedData1, 0, unsortedData2, 0, unsortedData1.length);
Integer [] sortedDataAscending;
Integer [] sortedDataDescending;
long start = System.nanoTime();
sortedDataAscending = bubbleSortAscending(unsortedData1);
sortedDataDescending = bubbleSortDescending(unsortedData2);
// ...
经过测试,您的algorythm工作正常,只有阵列错误:
$ javac BubbleSortNumeric.java && java BubbleSortNumeric
Enter a set of integers seperated by a space.
1 3 9 2 40 193
6
Ascending: [1, 2, 3, 9, 40, 193]
Descening: [193, 40, 9, 3, 2, 1]
Execution time: 0.068779ms.
答案 1 :(得分:0)
我会给你一个提示:交换这两行,执行,你会看到魔法。 从这个
sortedDataAscending = bubbleSortAscending(unsortedData);
sortedDataDescending = bubbleSortDescending(unsortedData);
到这个
sortedDataDescending = bubbleSortDescending(unsortedData);
sortedDataAscending = bubbleSortAscending(unsortedData);
这对你有什么意义?
你要修改两次相同的数组!所有参考文献
unsortedData
sortedDataAscending
sortedDataDescending
指向同一个对象:一个数组,首先是未排序的,然后按升序排序,最后按降序排序。
此时您决定将其打印出来。
两次。