Queue implementation using Linked list – Data Structures Part 5

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we have seen what is a queue and queue implementation in C using an array. In … Read more

Queue in C – Data Structures Part 4

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we have seen how to implement the stack data structure using the Linked List. In this … Read more

Stack implementation using Linked list – Data Structures Part 3

Stack Implementation using Linked List

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous tutorial, we have seen how to create a stack using a one-dimensional array. … Read more

Stack Data Structure in C Programming – Data Structures Part 2

Stack Data Structure in C

This article is a continuation of the  Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our previous article, we discussed what is a Data structure and why we need that. In this article, … Read more

Data Structure in C Introduction – Data Structures Part 1

This article is a Series on Data Structures and carries the discussion on different types of data structures and their implementation. The aim of this series is to provide easy and practical examples that anyone can understand. In our last article, we discussed Flexible Array Member in C (FAM). In this article, we’re going to … Read more