编写一个程序实现选择排序算法对输入的整数进行降序排序
时间: 2024-05-15 08:19:07 浏览: 87
好的,可以为您编写如下程序实现选择排序算法对输入的整数进行降序排序:
```python
def selection_sort_descending(array):
for i in range(len(array)):
max_idx = i
for j in range(i+1, len(array)):
if array[j] > array[max_idx]:
max_idx = j
array[i], array[max_idx] = array[max_idx], array[i]
return array
input_array = input("请输入要排序的整数,用逗号分隔:").split(",")
input_array = [int(i) for i in input_array]
sorted_array = selection_sort_descending(input_array)
print("降序排列后的数组为:", sorted_array)
```
您可以输入要排序的整数,程序将对其进行降序排序并输出结果。
相关问题
定义一个存放在包com.inter下的接口Sort,接口中定义了排序方法sort()。编写该接口的实现类,实现选择排序ChoiceSort和冒泡排序BubbleSort,分别实现对一组整数的降序排列。再编写一个测试类TestSort,在测试类的主方法中通过Sort对象(接口回调)调用方法sort(),分别实现对一组整数的选择算法和冒泡算法的降序排列并输出排序结果。
好的,这是一个关于Java编程的问题。下面是代码实现:
首先是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 minIndex = i;
for (int j = i + 1; j < len; j++) {
if (arr[minIndex] < arr[j]) {
minIndex = j;
}
}
if (minIndex != i) {
int temp = arr[i];
arr[i] = arr[minIndex];
arr[minIndex] = 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 - 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, 8, 4, 7, 1};
Sort choiceSort = new ChoiceSort();
choiceSort.sort(arr);
System.out.println("选择排序结果:");
for (int i : arr) {
System.out.print(i + " ");
}
System.out.println();
int[] arr2 = {5, 2, 8, 4, 7, 1};
Sort bubbleSort = new BubbleSort();
bubbleSort.sort(arr2);
System.out.println("冒泡排序结果:");
for (int i : arr2) {
System.out.print(i + " ");
}
}
}
```
输出结果为:
```
选择排序结果:
8 7 5 4 2 1
冒泡排序结果:
8 7 5 4 2 1
```
以上代码实现了一个基于接口的排序算法,其中选择排序和冒泡排序都实现了Sort接口中的sort()方法,TestSort测试类中则通过Sort对象调用sort()方法,实现了对一组整数的选择排序和冒泡排序的降序排列。
Java定义一个接口Sort,接口中定义了排序方法sort()。然后该接口的实现类有选择排序ChoiceSort和冒泡排序BubbleSort,分别实现对一组整数的降序排列。再编写一个测试类TestSort,在测试类的主方法中通过Sort对象调用方法sort(),分别实现对一组整数的选择算法和冒泡算法的降序排列并输出排序结果
好的,我可以帮你解答这个问题。下面是相关的Java代码:
```java
// 定义接口Sort
interface Sort {
void sort(int[] arr);
}
// 实现选择排序算法的类ChoiceSort
class ChoiceSort implements Sort {
@Override
public void sort(int[] arr) {
for (int i = 0; i < arr.length - 1; i++) {
int minIndex = i;
for (int j = i + 1; j < arr.length; j++) {
if (arr[j] > arr[minIndex]) {
minIndex = j;
}
}
int tmp = arr[i];
arr[i] = arr[minIndex];
arr[minIndex] = tmp;
}
}
}
// 实现冒泡排序算法的类BubbleSort
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 tmp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = tmp;
}
}
}
}
}
// 测试类TestSort
public class TestSort {
public static void main(String[] args) {
Sort choiceSort = new ChoiceSort();
int[] arr1 = {3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5};
choiceSort.sort(arr1);
System.out.println("选择排序结果:");
for (int i : arr1) {
System.out.print(i + " ");
}
System.out.println();
Sort bubbleSort = new BubbleSort();
int[] arr2 = {3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5};
bubbleSort.sort(arr2);
System.out.println("冒泡排序结果:");
for (int i : arr2) {
System.out.print(i + " ");
}
System.out.println();
}
}
```
运行上述代码,输出结果如下:
```
选择排序结果:
9 6 5 5 5 4 3 3 2 1 1
冒泡排序结果:
9 6 5 5 5 4 3 3 2 1 1
```
需要注意的是,选择排序算法和冒泡排序算法的升序和降序排序只需要调整比较运算符的方向即可。在上述代码中,实现了对一组整数的降序排列。
阅读全文