Queues implementation in C using Linked List
A queue is a collection of objects in which elements are added/deleted based on the principle of FIFO First In First Out. In this post, Queue data str...
March 2, 2019 1 min read
Posts with tag : C
A queue is a collection of objects in which elements are added/deleted based on the principle of FIFO First In First Out. In this post, Queue data str...
March 2, 2019 1 min read
Binary Search Tree is a Binary Tree in which for each node, value of all the nodes in the left subtree is lesser or equal and values of all the nodes...
February 24, 2019 6 min read
In this post, we'll walk over the Singly Linked List and its implementation using C language. In a singly linked list, each node in the list stores tw...
November 9, 2017 2 min read
In C/C++, Char is basically an array of characters. So, if we have something like below :- char c = "hello"; It means, we have an array "c" w...
November 1, 2017 2 min read
I'll use this post to talk about creation & initialization of structures and also about the importance of using typedef while working with structures...
October 29, 2017 4 min read