- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道如何纠正该程序。我尝试将 Sorting.java 程序更改为 public static void SelectionSort (int[] intList),但这似乎并不能解决问题。有人可以帮忙吗?
文件 Sorting.java 包含 Sorting 类。此类实现了选择排序和插入排序算法,用于按升序对任何 Comparable 对象数组进行排序。在本练习中,您将使用 Sorting 类对几种不同类型的对象进行排序。
文件 Numbers.java 读取整数数组,调用选择排序算法对它们进行排序,然后打印排序后的数组。将 Sorting.java 和 Numbers.java 保存到您的目录中。 Numbers.java 不会以其当前形式进行编译。研究一下,看看你是否能找出原因。
尝试编译 Numbers.java 并查看错误消息是什么。 **问题涉及到原始数据和对象之间的区别。更改程序,使其正常工作(注意:您不需要进行太多更改 - Java 1.5 的自动装箱功能将处理从 int 到 Integer 的大多数转换)。
代码如下:-
// Demonstrates the selection sort and insertion sort algorithms.
public class Sorting {
// Sorts the specified array of objects using the selection
// sort algorithm.
public static void selectionSort (Comparable[] list) {
int min;
Comparable temp;
for (int index = 0; index < list.length-1; index++) {
min = index;
for (int scan = index+1; scan < list.length; scan++)
if (list[scan].compareTo(list[min]) < 0)
min = scan;
// Swap the values
temp = list[min];
list[min] = list[index];
list[index] = temp;
}
}
// Sorts the specified array of objects using the insertion
// sort algorithm.
public static void insertionSort (Comparable[] list) {
for (int index = 1; index < list.length; index++) {
Comparable key = list[index];
int position = index;
// Shift larger values to the right
while (position > 0 && key.compareTo(list[position-1]) < 0) {
list[position] = list[position-1];
position--;
}
list[position] = key;
}
}
}
// Numbers.java
// Demonstrates selectionSort on an array of integers.
import java.util.Scanner;
public class Numbers {
// Reads in an array of integers, sorts them,
// then prints them in sorted order.
public static void main (String[] args) {
int[] intList;
int size;
Scanner scan = new Scanner(System.in);
System.out.print ("\nHow many integers do you want to sort? ");
size = scan.nextInt();
intList = new int[size];
System.out.println ("\nEnter the numbers...");
for (int i = 0; i < size; i++)
intList[i] = scan.nextInt();
Sorting.selectionSort(intList);
System.out.println ("\nYour numbers in sorted order...");
for (int i = 0; i < size; i++)
System.out.print(intList[i] + " ");
System.out.println ();
}
}
最佳答案
在您的排序类 selectionSort(Comparable[] list)
方法中,需要 Comparable 数组。
但是您正在发送 int[],而不是 int[]
,您可以发送 Integer[]
。
在 main
方法中声明数组,如下所示,它将正常工作。
Integer[] intList;
用下面的代码替换您的主要方法。
public static void main(String[] args)
{
Integer[] intList;
int size;
Scanner scan = new Scanner(System.in);
System.out.print("\nHow many integers do you want to sort? ");
size = scan.nextInt();
intList = new Integer[size];
System.out.println("\nEnter the numbers...");
for (int i = 0; i < size; i++)
intList[i] = scan.nextInt();
Sorting.selectionSort(intList);
System.out.println("\nYour numbers in sorted order...");
for (int i = 0; i < size; i++)
System.out.print(intList[i] + " ");
System.out.println();
}
仅供引用
虽然 int
会自动装箱为 Integer
,但 int[]
不会自动装箱为 Integer[]
。
数组没有装箱,只是类型本身。
请参阅:How to convert int[] into List<Integer> in Java?
在java中
关于java - 多态排序转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13639458/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!