Selection Sort In selection Sort the array is sorted in such a way that we first select the first element of the array and then we compa...
Read More
Showing posts with label Sorting in C. Show all posts
Showing posts with label Sorting in C. Show all posts
Write a Program for Radix Sort (Bucket Sort) in C
Radix Sort In this sorting method first the largest element is searched then count the number of digits in that number and then start ...
Read More
Write a Program for Quick Sort in C
/* Quick Sort */ #include<stdio.h> void display(int a[],int n); void quickSort(int a[],int first,int last); int main() {...
Read More
Write a Program for Merge Sort in C
/*MergeSort(arr[], l, r) If r > l 1. Find the middle point to divide the array into two halves: middle m = (l+r)/...
Read More
Write a program for Insertion Sort in C
Insertion Sort In this method we select the second element of the array and compare it with previous element and if the the element fou...
Read More
Write a Program to perform Bubble Sort in C
Bubble Sort in C In this sorting method we compare in pair of two element if the element in first position is larger than the second el...
Read More
Subscribe to:
Posts (Atom)