BIG
[ C ] Sample Code - quick sort
#include <stdio.h>
// Swap 함수: a와 b의 값을 바꾼다.
void swap(int *a, int *b) {
int temp = *a;
*a = *b;
*b = temp;
}
// Partition 함수: 배열 arr의 왼쪽과 오른쪽에서 시작해서 피벗을 중심으로 정렬한다.
int partition(int arr[], int low, int high) {
int pivot = arr[high];
int i = low - 1;
for (int j = low; j < high; j++) {
if (arr[j] <= pivot) {
i++;
swap(&arr[i], &arr[j]);
}
}
swap(&arr[i + 1], &arr[high]);
return i + 1;
}
// Quick sort 함수: 배열 arr를 퀵소트를 이용해 정렬한다.
void quickSort(int arr[], int low, int high) {
if (low < high) {
int pivotIndex = partition(arr, low, high);
quickSort(arr, low, pivotIndex - 1);
quickSort(arr, pivotIndex + 1, high);
}
}
// main 함수: 배열 arr을 생성하고 퀵소트를 이용해 정렬한다.
int main() {
int arr[] = {10, 7, 8, 9, 1, 5};
int n = sizeof(arr) / sizeof(arr[0]);
quickSort(arr, 0, n - 1);
for (int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
return 0;
}
LIST
'!!...C' 카테고리의 다른 글
[ C ] Sample Code - curl - 네이버 블러그 RSS 읽어오기 (0) | 2023.02.21 |
---|---|
[ C ] Sample Code - recursive call (0) | 2023.02.20 |
[ C ] Sample Code - bubble sort (0) | 2023.02.20 |
[ C ] Sample Code - windows 10 get network config info (0) | 2023.02.20 |
[ C ] Sample Code - windows beep sound output (0) | 2023.02.20 |