Shell Sort using C Sumit Kumar Pradhan May 09, 2021 I will show here an example on shell sort (invented by Donald Shell) using C programming language. This method makes repeated use of straig... Continue Reading
Straight Insertion Sort using C Sumit Kumar Pradhan May 09, 2021 Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. Continue Reading
Shuttle Sort using C Sumit Kumar Pradhan May 09, 2021 In Shuttle Sort technique for n elements in an array a, it requires n-1 passes. When i-th pass(1<=i<=n) begins, the first i elements,... Continue Reading
Binary Tree using pointer in C Sumit Kumar Pradhan May 09, 2021 Here we will see example on binary tree using pointer in C programming language. The same concept can be used in other language to write pr... Continue Reading
Queue using Linked List in C Program Sumit Kumar Pradhan May 09, 2021 We will create an example on queue using linked list in C program. A queue like a stack is another special type of ordered list. In queue i... Continue Reading
Stack using Linked List in C Program Sumit Kumar Pradhan May 09, 2021 We will see how to create stack using linked list in C program. Stack is a special kind of linear list. Linear list is an ordered collectio... Continue Reading
Simple Selection Sort using C Sumit Kumar Pradhan May 07, 2021 The simplest possible technique based on the principle of repeated selection makes use of “n” passes over an array elements. In the i-th pa... Continue Reading
Straight Selection Sort using C Sumit Kumar Pradhan May 07, 2021 Selection sorting refers to a class of algorithms for sorting a list of items using comparisons. These algorithms select successively small... Continue Reading
Bubble Sort using C Sumit Kumar Pradhan May 07, 2021 Bubble sort is one of the most popular sorting methods. It can be treated as a selection sort because it is based on successively selecting... Continue Reading
Quick Sort using C Sumit Kumar Pradhan May 07, 2021 Quick sort or quicksort (sometimes called partition-exchange sort) is an efficient and very fast sorting algorithm for internal sorting, se... Continue Reading