用java定义一个存放在包com.inter下的接口Sort,接口中定义了排序方法sort()。编写该接口的实现类,实现选择排序ChoiceSort和冒泡排序BubbleSort,分别实现对一组整数的降序排列。再编写一个测试类TestSort,在测试类的主方法中通过Sort对象(接口回调)调用方法sort(),分别实现对一组整数的选择算法和冒泡算法的降序排列并输出排序结果。
时间: 2024-03-03 19:48:59 浏览: 55
好的,我来为您解答这个问题。
首先,定义接口Sort:
```java
package com.inter;
public interface Sort {
void sort(int[] arr);
}
```
接着,实现选择排序ChoiceSort:
```java
package com.inter;
public class ChoiceSort implements Sort {
@Override
public void sort(int[] arr) {
for (int i = 0; i < arr.length - 1; i++) {
int maxIndex = i;
for (int j = i + 1; j < arr.length; j++) {
if (arr[j] > arr[maxIndex]) {
maxIndex = j;
}
}
if (maxIndex != i) {
int temp = arr[i];
arr[i] = arr[maxIndex];
arr[maxIndex] = temp;
}
}
}
}
```
再实现冒泡排序BubbleSort:
```java
package com.inter;
public class BubbleSort implements Sort {
@Override
public void sort(int[] arr) {
for (int i = 0; i < arr.length - 1; i++) {
for (int j = 0; j < arr.length - i - 1; j++) {
if (arr[j] < arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
最后,编写测试类TestSort:
```java
package com.inter;
public class TestSort {
public static void main(String[] args) {
int[] arr = {5, 2, 9, 3, 7, 6};
Sort sort;
sort = new ChoiceSort();
sort.sort(arr);
System.out.print("选择排序:");
for (int i : arr) {
System.out.print(i + " ");
}
System.out.println();
arr = new int[]{5, 2, 9, 3, 7, 6};
sort = new BubbleSort();
sort.sort(arr);
System.out.print("冒泡排序:");
for (int i : arr) {
System.out.print(i + " ");
}
System.out.println();
}
}
```
运行结果如下:
```
选择排序:9 7 6 5 3 2
冒泡排序:9 7 6 5 3 2
```
以上就是用Java定义一个存放在包com.inter下的接口Sort,实现选择排序ChoiceSort和冒泡排序BubbleSort,并用测试类TestSort测试的全部代码。
阅读全文