我想按数字顺序对两个数组进行排序。因此,如果我输入的内容如下:96 2 1 42 49 5
,它会给我一个输出:1 2 42 49 96
。
你会如何使用for-loop做到这一点?我试图实现一个基本的for循环来让我的数字在数字上提升。
以下是代码:
public static void main(String[] args) {
System.out.println("Input up to '10' numbers for current array: ");
int[] array1 = new int[10];
int i;
int k;
Scanner scan = new Scanner(System.in);
for (i = 0; i < 10; i++) {
System.out.println("Input a number for " + (i + 1) + ": ");
int input = scan.nextInt();
if (input == -9000) {
break;
} else {
array1[i] = input;
}
}
System.out.println("\n" + "Array 1: ");
for (int j = 0; j < i; j++) {
System.out.println((j + 1) + ": " + array1[j]);
}
int[] array2 = new int[i];
System.out.println("\n" + "Array 2: ");
for (int j = 0; j < i; j++) {
array2[j] = array1[j];
System.out.println((j + 1) + ": " + array2[j]);
}
scan.close();
}
}
答案 0 :(得分:1)
使用冒泡排序。您将需要使用2 for循环。
冒泡排序的 复杂性为O(n2)
package com.*;
import java.util.Scanner;
public class Sort {
public static void main(String[] args) {
int n, c, d, swap;
Scanner in = new Scanner(System.in);
System.out.println("Input number of integers to sort");
n = in.nextInt();
int array[] = new int[n];
System.out.println("Enter " + n + " integers");
for (c = 0 ; c < n ; c++)
array[c] = in.nextInt();
for (c = 0 ; c < (n - 1) ; c++) {
for (d = 0 ; d < n - c - 1 ; d++) {
if (array[d] > array[d + 1]) /* For descending order use < */
{
swap = array[d];
array[d] = array[d + 1];
array[d + 1] = swap;
}
}
}
System.out.println("Sorted list of numbers");
for (c = 0 ; c < n ; c++)
System.out.println(array[c]);
}
}
<强>输出强>
Input number of integers to sort
5
Enter 5 integers
96
2
1
42
49
Sorted list of numbers
1
2
42
49
96
答案 1 :(得分:-1)
有许多sorting algorithms可以解决此任务。每种算法都在速度和复杂性之间进行权衡。最简单的排序算法是bubble sort。冒泡排序效率低下,但如果处理小型数组则使用起来非常合理。