Merge sort (External sort) 0 Merge sort (External sort) In external sorting process, some part of the data is held in primary memory during the sorting process and ... READ MORE +
MERGE SORT PROGRAM 0 MERGE SORT #include<stdio.h> void mergeSort(int arr[ ],int low, int mid, int high); void partition(int arr[ ],int low, int hig... READ MORE +
QUICK SORT PROGRAM 0 QUICK SORT #include<stdio.h> #include<conio.h> void qsort(int [ ], int, int); void main() { int a[10], n, i... READ MORE +
SELECTION SORT PROGRAM 0 SELECTION SORT #include<stdio.h> #include<conio.h> void main() { int size, i, j, temp, a[100]; clrscr(); ... READ MORE +
INSERTION SORT PROGRAM 0 INSERTION SORT #include<stdio.h> #include<conio.h> void main() { int a[100], n, temp, i, j; printf... READ MORE +
BUBBLE SORT PROGRAM 0 BUBBLE SORT #include<stdio.h> #include<conio.h> void main() { int i, j, n, a[10],temp; clrscr(); printf(... READ MORE +
Quick sort 0 Quick sort } Quick sort is a sorting technique designed based on the divide-and-conquer method. In this sorting technique, array eleme... READ MORE +