Last active
June 13, 2016 06:07
-
-
Save raunaqbn/c30ea795ad2912caf5b0efd9494fceb4 to your computer and use it in GitHub Desktop.
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
/*Bubble Sort*/ | |
void bubbleSort(int arr[], int n) | |
{ | |
int i, j; | |
for (i = 0; i < n-1; i++) | |
// Last i elements are already in place | |
for (j = 0; j < n-i-1; j++) | |
if (arr[j] > arr[j+1]) | |
swap(&arr[j], &arr[j+1]); | |
} | |
/*Selection Sort*/ | |
/*Selection sort*/ | |
void selectionSort(int arr[], int n) | |
{ | |
int i, j, min_idx; | |
// One by one move boundary of unsorted subarray | |
for (i = 0; i < n-1; i++) | |
{ | |
// Find the minimum element in unsorted array | |
min_idx = i; | |
for (j = i+1; j < n; j++) | |
if (arr[j] < arr[min_idx]) | |
min_idx = j; | |
// Swap the found minimum element with the first element | |
swap(&arr[min_idx], &arr[i]); | |
} | |
} | |
void insertionSort(int arr[], int n) | |
{ | |
int i, key, j; | |
for (i = 1; i < n; i++) | |
{ | |
key = arr[i]; | |
j = i-1; | |
/* Move elements of arr[0..i-1], that are | |
greater than key, to one position ahead | |
of their current position */ | |
while (j >= 0 && arr[j] > key) | |
{ | |
arr[j+1] = arr[j]; | |
j = j-1; | |
} | |
arr[j+1] = key; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment