#include<iostream>
#include<iomanip>
using namespace std;
#define MAX_ARY 15
void selectionSort(int list[], int last);
int main()
{
int ary[MAX_ARY]={12,12,23,54,67,43,67,87,56,4,3,2,54,67,9};
cout << "before sort"<<endl;
for(int i=0; i<MAX_ARY; i++)
{
cout<<setw(3)<<ary[i];
}
cout<<endl;
cout<<"after selection sort"<<endl;
selectionSort(ary, MAX_ARY-1);
for(int i=0; i<MAX_ARY; i++)
{
cout<<setw(3)<<ary[i];
}
cout<<endl;
}
void selectionSort(int list[], int last)
{
int current;
int smallest;
int hold;
int walker;
for(current = 0; current < last; current++)
{
smallest=current;
for(walker = current +1; walker<=last; walker++)
{
if(list[walker]< list[smallest])
{
smallest = walker;
}
}//for
//최소값이 선택됨. 현재요소와 교환
hold = list[current];
list[current] = list[smallest];
list[smallest] = hold;
cout<<"PASS"<< current+1<<":";
for(int i=0; i<MAX_ARY; i++)
{
cout<<setw(3)<<list[i];
}
cout<<endl;
}
}
'1. IT Story > Development' 카테고리의 다른 글
무료 IT 개발 언어공부, 코딩공부 유튜브 TOP5 (0) | 2021.01.26 |
---|---|
heapSort (0) | 2012.04.04 |
shellSort (0) | 2012.04.04 |
오픈 API를 이용한 간단한 번역프로그램 (0) | 2012.03.29 |
ChatClient (0) | 2012.03.29 |
MultiChatServer (0) | 2012.03.29 |
MultiChatClient (0) | 2012.03.29 |
큐를 이용한 간단한 구직Pro (0) | 2012.03.29 |