博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Aizu - ALDS1_2_B Selection Sort 选择排序
阅读量:3904 次
发布时间:2019-05-23

本文共 1244 字,大约阅读时间需要 4 分钟。

Write a program of the Selection Sort algorithm which sorts a sequence A in ascending order. The algorithm should be based on the following pseudocode:

SelectionSort(A)1 for i = 0 to A.length-12     mini = i3     for j = i to A.length-14         if A[j] < A[mini]5             mini = j6     swap A[i] and A[mini]

Note that, indices for array elements are based on 0-origin.

Your program should also print the number of swap operations defined in line 6 of the pseudocode in the case where i ≠ mini.

Input

The first line of the input includes an integer N, the number of elements in the sequence.

In the second line, N elements of the sequence are given separated by space characters.

Output

The output consists of 2 lines.

In the first line, please print the sorted sequence. Two contiguous elements of the sequence should be separated by a space character.

In the second line, please print the number of swap operations.

Constraints

1 ≤ N ≤ 100

Sample Input 1

65 6 4 2 1 3

Sample Output 1

1 2 3 4 5 64

 

Sample Input 2

65 2 4 6 1 3

Sample Output 2

1 2 3 4 5 63
#include 
#include
#include
#include
using namespace std;const int maxn=105;int n;int a[maxn];void SelectSort (){ int sum=0; for (int i=0;i

 

转载地址:http://vpaen.baihongyu.com/

你可能感兴趣的文章
windows常用软件收集
查看>>
Markdown语法注意借鉴
查看>>
Java 容器Collection(5)
查看>>
Java IO操作(6)
查看>>
Java数组(3)
查看>>
Java线程(7)
查看>>
Java GUI基础(9)
查看>>
Java网络基础(8)
查看>>
Java_正则表达式
查看>>
如何通俗地解释 PID 参数整定?
查看>>
简单滤波算法的资料
查看>>
在Eclipse中使用JUnit4进行单元测试(中级篇)
查看>>
在Eclipse中使用JUnit4进行单元测试(高级篇)
查看>>
Java进阶之----LinkedList源码分析
查看>>
Java设计模式--责任链模式(Chain of Responsibility)
查看>>
Java设计模式——Iterator迭代器
查看>>
Java设计模式——Comparable接口&&Comparator(CC系)策略模式的应用
查看>>
Java设计模式——Comparable接口&&Comparator(CC系)策略模式的应用[续]
查看>>
Java设计模式——代理模式
查看>>
Java设计模式——工厂模式
查看>>