C Related

Easy Binary Tree Creation using Queue code

Binary Tree Creation using Queue code This code is for Binary tree creation using queue. In this code first created node will be treated as root node. After that another function insert() will be called for adding the child nodes. Every time one node created and sent to queue for keeping track of that node. …

Easy Binary Tree Creation using Queue code Read More »

Easy Doubly Linked List Code

Doubly Linked List Code This code is designed to implement Doubly Linked List concept. In this code almost all the possible operations are implemented using separate functions. Each function is designed to implement one accessibility technique of doubly linked list  during insertion or deletion. Here we have designed two display functions for two different way …

Easy Doubly Linked List Code Read More »

Easy Polynomial Addition using Linked List code

Code for Polynomial Addition using Linked List This code is designed to implement Polynomial Addition using Linked List. In this code two polynomial form is taken as input from the user to represent a polynomial then using Polynomial addition technique these two polynomial is added. This Polynomial addition using linked list code will help to …

Easy Polynomial Addition using Linked List code Read More »

Easy Linked List Merging code

Code for Linked List Merging This code is designed for Linked List Merging. This code will be used for merging two sorted linked list. If entered linked lists are not sorted then using Bubble Sort we will sort them first then they will be merged. This Linked List Merging code will help to understand basics …

Easy Linked List Merging code Read More »

Easy Bubble Sort Using Linked List Code

Code for Bubble Sort using Linked List This code is designed to implement Bubble Sort Using Linked List. In this code we have created a linked list then displayed the linked list. After that we have performed Bubble Sort Using Linked List and then displayed the sorted linked list. This code will help an programmer …

Easy Bubble Sort Using Linked List Code Read More »

Easy Advanced Linked List code

Advanced Linked List operations Several operations of Advanced Linked List are designed in this code. In this code we have used several important functions related to Linear Linked List. As all these functions are bit logical and advanced that\’s why this code is named as Advanced Linked List. Using dynamic memory allocation concept memory is …

Easy Advanced Linked List code Read More »

Easy Basic Linear Linked List Code

Basic Linear Linked List Code Two operations of Basic Linear Linked List are designed in this code. In this code one linear linked list is created by using create() function and that basic linear linked list is displayed by using disp() function. Using dynamic memory allocation concept memory is occupied. This is a very simple …

Easy Basic Linear Linked List Code Read More »

Easy Circular Queue implementing code using structure

Code for implementing Circular Queue This code is designed for implementing all the functions available in Circular Queue. In this code structure is used for maintaining the approach. As we know Queue follows FIFO concept, so here we have designed Enqueue() and Dequeue() functions as per the concept. We have used structure type pointer as …

Easy Circular Queue implementing code using structure Read More »

Easy Linear Queue implementing code using structure

Code for implementing Linear Queue This code is designed for implementing all the functions available in Linear Queue. In this code structure is used for maintaining the approach. As we know Queue follows FIFO concept, so here we have designed Enqueue() and Dequeue() functions as per the concept. We have used structure type pointer as …

Easy Linear Queue implementing code using structure Read More »

Easy Code for Checking Parenthesis

Code for checking Braces placed properly or not This code is designed for checking braces in an equation. In this code you have to pass an equation in string (character array) format, the code will check whether you have completed or closed braces in proper place or with proper pair. This is the easiest way …

Easy Code for Checking Parenthesis Read More »