[C언어 소스] 쉘 정렬(Shell Sort) 알고리즘
//쉘 정렬(Shell Sort)
#include <stdio.h>
#define SWAP(a,b) {int t; t = a; a=b; b=t;}//a와 b를 교환
int *origin;
int on;
void ShellSort(int *base, int n);
int main(void)
{
int arr[10] = { 9,4,3,10,5,8,7,6,2,1 };
origin = arr;
on = 10;
ShellSort(arr, 10);
return 0;
}
void InsertionSort2(int *base, int size, int step);
void ViewArr(int *arr, int n);
void ShellSort(int *base, int size)
{
int i, step;
for (step = size / 2; step>0; step /= 2)//step의 폭을 1/2로 줄여간다.
{
printf("step:%d\n", step);
for (i = 0; i<step; i++) //step 간격에 있는 요소들을 삽입정렬
{
InsertionSort2(base + i, size - i, step);
}
}
}
void InsertionSort2(int *base, int size, int step)
{
int i, j;
for (i = step; i<size; i += step)//정렬 대상 원소는 step 간격으로 이동
{
for (j = i; j>0; j -= step)//step 간격으로 앞으로 이동
{
if (base[j - step]>base[j])//앞쪽이 더 클 때
{
SWAP(base[j - step], base[j]);//교환
ViewArr(origin, on);
}
else
{
break;
}
}
}
}
void ViewArr(int *arr, int n)
{
int i = 0;
for (i = 0; i<n; i++)
{
printf("%2d ", arr[i]);
}
printf("\n");
}
'C언어 > C언어 예제' 카테고리의 다른 글
[C언어 소스] 병합 정렬(Merge Sort, 합병 정렬) 알고리즘 (0) | 2016.04.13 |
---|---|
[C언어 소스] 퀵 정렬(Quick Sort) 알고리즘 (0) | 2016.04.13 |
[C언어 소스] 삽입 정렬(Insertion Sort) 알고리즘 (0) | 2016.04.13 |
[C언어 소스] 선택 정렬(Selection Sort) 알고리즘 (0) | 2016.04.13 |
[C언어 소스] 버블 정렬(Bubble Sort) 알고리즘 (0) | 2016.04.13 |