Stack implementation of the linked list. It is a data structure and the stack follows the last in first out technique. Using C++
Application of stack infix to postfix which follows last in first out and it is a linear data structure. Using C++ programming language
ARRAY IMPLEMENTATION OF QUEUES Using rear and front. It is a linear data structure and it follows the first in first out technique. Using C++ Programming Language.
QuickSort follows the divide and conquer algorithm technique. It picks an element as a pivot and then it splits the given array around the picked pivot. element and then it is sorted. Using C++.
This project is based on Random access in File Handling to enter users data in random and to search them. Here I have written code for finding the train number and details of it Using C++ program
A stack data structure is implemented using 1-dimensional array. Take array of specific size and insert,delete,isempty&display values into array by using LIFO principle with 'top'. Using C++
Now here I have provided the code for binary to gray code. Like for example if you give the input the output of given will be displayed while running the program. Using C++ Programing Language