Last active
August 9, 2023 08:28
-
-
Save christophewang/de1fed3fd8b7890fd889 to your computer and use it in GitHub Desktop.
Insertion Sort in C++
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
#include <iostream> | |
void printArray(int *array, int n) | |
{ | |
for (int i = 0; i < n; ++i) | |
std::cout << array[i] << std::endl; | |
} | |
void insertionSort(int *array, int n) | |
{ | |
int j; | |
int temp; | |
for (int i = 0; i < n; ++i) | |
{ | |
j = i; | |
while (j > 0 && array[j] < array[j - 1]) | |
{ | |
temp = array[j]; | |
array[j] = array[j - 1]; | |
array[j - 1] = temp; | |
j--; | |
} | |
} | |
} | |
int main() | |
{ | |
int array[] = {95, 45, 48, 98, 1, 485, 65, 478, 1, 2325}; | |
int n = sizeof(array)/sizeof(array[0]); | |
std::cout << "Before Insertion Sort :" << std::endl; | |
printArray(array, n); | |
insertionSort(array, n); | |
std::cout << "After Insertion Sort :" << std::endl; | |
printArray(array, n); | |
return (0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment