Insertion sort linked list C++

Happy Codings - Programming Code Examples
Convert Binary Code of a Number into its
C program to using recursion, evaluates the gray code equivalent of a binary number. A gray is also represented using 0s and 1s. The speciality of gray code is that only one bit is

C Reverse an Array without using another
C reverse array without using another array relies on the above logic. What we need to do is maintain two array indexes. arrIndex that moves from size - 1 to 0. revIndex that moves

Find Armstrong Numbers between 1 to N
The Armstrong Number is a n-digit number that is equal to the sum of nth power of its digits. 407 = 4^3 + 0^3 + 7^3 = 407 is. Input upper limit to print Armstrong number from

Solves Josephus Problem use Linked List
C Language Program to Solves the Josephus Problem using Linked List. Josephus Problem talks about a problem where there are people standing in circle waiting to be executed. The

C Program to Linked List implementation
Create list, add in the list, delete in the list, append two list, show list, add in beginning, add in end, add after a given element, return to main menu, delete in beginning, delete in

C Code Function Solve the Tower of Hanoi
C Program code uses Recursive Function and solves the tower of hanoi. Tower of hanoi is a mathematical puzzle. It consists of threerods, and a number of disks of different sizes which

Find Length of Strings Without use Library
Its easier to find the length of the string using given library function, but in this program we are finding the "Length of the String" without using Library Function. In the above program

C++ Codes Perform Dictionary Operations
This is a C++ Program to perform "dictionary" operations in binary search tree. In computer science, a binary search tree, sometimes also called an ordered or "sorted binary tree", is a