It can be depicted in below picture.
Strategy:
- Lets have the number in array name 'a'.
- Sorting will be done by function sort_insert that has following prototype
- int sort_insert(int *arr, int max);
- arr is pointer to array where the data is there.
- max is the length of the array.
- Lets have a function print_array that will help us print the content of the array. Which has following prototype
- void print_array(int *arr, int max);
#include <stdio.h> #define NUM_ELE(a) sizeof(a)/sizeof(a[0]) int sort_insert(int *, int); void print_array(int *, int); int main() { int a[] = {4, 5, 1, 2}; printf("Unsorted Array is - "); print_array(a, NUM_ELE(a)); printf("\n"); sort_insert(a, NUM_ELE(a)); printf("Sorted Array is - "); print_array(a, NUM_ELE(a)); printf("\n"); } int sort_insert(int *arr, int max) { int idx, right_card, s_idx; for(idx = 1; idx < max; idx++) { right_card = arr[idx]; s_idx = idx - 1; while(s_idx >= 0 && arr[s_idx] > right_card){ arr[s_idx + 1] = arr[s_idx]; s_idx --; } arr[s_idx + 1] = right_card; } return 0; } void print_array(int *arr, int n) { int i; for(i = 0; i < n; i++) { printf(" %d", arr[i]); } }
Output of the above program is
Unsorted Array is - 4 5 1 2 Sorted Array is - 1 2 4 5
Links
Next Article - C Programming Challenge #03: Sort - selectionPrevious Article - C Programming Challenge #01: Pascals Traingle
All Article - C Programming Challenge
No comments :
Post a Comment