Stooge Sort
Write a program to demonstrate stooge sort algorithm. Solution: Continue reading Stooge Sort
Write a program to demonstrate stooge sort algorithm. Solution: Continue reading Stooge Sort
Write a programme to demonstrated Priority Queue using Heap Solution: Continue reading Priority Queue using Heap
Write a program to reversing a queue element Solution: Continue reading Reversing a Queue
Write a program to demonstrate First In First Out(FIFO) approach. Solution: Continue reading First In First Out(FIFO) Implementation
Write a program to reverse a word using stack For example Solution Continue reading Reverse a word using Stack
Write a program to demonstrate stack Implementation using Queue. Solution: Continue reading Implement Stack using Queue
Write a program to demonstrate stack Implementation using an Array. Solution: Continue reading Implement Stack using an Array
Write a program to delete an element from a stack. Solution Continue reading Delete element from stack
Write a program to Sort a stack Solution: Continue reading Sort stack
Write a program to Sort a stack using recursion Solution: Continue reading Sort a stack using recursion
Write a program to reverse stack. For example Solution Continue reading Reverse Stack Implementation
Write a program to demonstrate stack Implementation using Linked List. Solution: Continue reading Stack Implementation using Linked List
Write a Program to sort the elements of the doubly linked list. Solution: Continue reading Sort doubly linked list.
Write a Program to search an element in a doubly linked list Solution: Continue reading Search in doubly linked list.
Write a Program to remove duplicate elements from a doubly linked list. Solution: Continue reading Remove duplicate elements from doubly linked list.
Write a Program to delete a new node from the middle of the doubly linked list. Solution: Continue reading Remove Node from doubly linked list.
Write a Program to create a doubly linked list from a Ternary Tree. Solution: Continue reading Convert Ternary Tree to doubly linked list.
Write a Program to sort the elements of the circular linked list. Solution: Continue reading Sort Circular Linked List
Write a Program to delete a new node from the end of the circular linked list. Solution: Continue reading Delete node from Circular Linked List
Write a Program to create a circular linked list of n nodes and display it in reverse order Solution: Continue reading Reverse Circular Linked List
Write a Program to create a circular linked list of n nodes and count the number of nodes. Solution: Continue reading Circular linked list
Write a Program to swap nodes in a singly linked list without swapping data Solution: Continue reading Swap nodes in singly linked list
Write a Program to search an element in a singly linked list Solution Continue reading Search in singly linked list
Write a Program to remove duplicate elements from a singly linked list Solution: Continue reading Duplicate elements from a singly linked list
Write a Program to insert a new node at the middle of the singly linked list Solution: Continue reading Insert a node in singly linked list