-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Selection sort in C | ||
|
||
#include <stdio.h> | ||
|
||
// function to swap the the position of two elements | ||
void swap(int *a, int *b) { | ||
int temp = *a; | ||
*a = *b; | ||
*b = temp; | ||
} | ||
|
||
void selectionSort(int array[], int size) { | ||
for (int step = 0; step < size - 1; step++) { | ||
int min_idx = step; | ||
for (int i = step + 1; i < size; i++) { | ||
|
||
// To sort in descending order, change > to < in this line. | ||
// Select the minimum element in each loop. | ||
if (array[i] < array[min_idx]) | ||
min_idx = i; | ||
} | ||
|
||
// put min at the correct position | ||
swap(&array[min_idx], &array[step]); | ||
} | ||
} | ||
|
||
// function to print an array | ||
void printArray(int array[], int size) { | ||
for (int i = 0; i < size; ++i) { | ||
printf("%d ", array[i]); | ||
} | ||
printf("\n"); | ||
} | ||
|
||
// driver code | ||
int main() { | ||
int data[] = {20, 12, 10, 15, 2}; | ||
int size = sizeof(data) / sizeof(data[0]); | ||
selectionSort(data, size); | ||
printf("Sorted array in Acsending Order:\n"); | ||
printArray(data, size); | ||
} |