定义一个存放在包com.inter下的接口Sort,接口中定义了排序方法sort()。编写该接口的实现类,实现选择排序ChoiceSort和冒泡排序BubbleSort,分别实现对一组整数的降序排列。再编写一个测试类TestSort,在测试类的主方法中通过Sort对象(接口回调)调用方法sort(),分别实现对一组整数的选择算法和冒泡算法的降序排列并输出排序结果。java
时间: 2024-02-29 13:53:07 浏览: 46
好的,以下是对应的代码:
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) {
int len = arr.length;
for (int i = 0; i < len - 1; i++) {
int maxIndex = i;
for (int j = i + 1; j < len; 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) {
int len = arr.length;
for (int i = 0; i < len - 1; i++) {
for (int j = 0; j < len - 1 - i; 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, 8, 3, 1, 9, 4, 6, 7};
Sort choiceSort = new ChoiceSort();
choiceSort.sort(arr);
System.out.println("选择排序结果:");
for (int i : arr) {
System.out.print(i + " ");
}
System.out.println();
Sort bubbleSort = new BubbleSort();
bubbleSort.sort(arr);
System.out.println("冒泡排序结果:");
for (int i : arr) {
System.out.print(i + " ");
}
}
}
```
输出结果:
```
选择排序结果:
9 8 7 6 5 4 3 2 1
冒泡排序结果:
1 2 3 4 5 6 7 8 9
```
阅读全文