SORTING

QUICK SORT

// Online C compiler to run C program online #include < stdio.h > int partition ( int a [] , int l …

MERGE SORT

#include < stdio.h > void merge ( int arr [] , int l , int m , int r ) {     int i, j, k;     in…

BUBBLE SORT

// write a c program to implement bubble sort #include < stdio.h > int main () {     int n = 5 ;   …

SELECTION SORT

// write a c program to implement selection sort #include < stdio.h > int main () {     int n = 5 ;…

INSERTION SORT

#include < stdio.h > int main () {     int n = 5 ;     int i,j,a[n],temp,min = 0 ;     printf ( …

Load More
That is All