Sonal Meenu Singh has Published 52 Articles

Basic Operations for Queue in Data Structure

Sonal Meenu Singh

Sonal Meenu Singh

Updated on 22-Feb-2023 11:23:18

616 Views

Queue is a collection of different data types and is an important part of data structure, following a particular order to insert and remove elements. In this tutorial, we will understand the basic operations of the queue. What is Queue in Data Structure? A Queue is a linear data structure ... Read More

Difference Between Array-Based Queue and List-Based Queue

Sonal Meenu Singh

Sonal Meenu Singh

Updated on 22-Feb-2023 11:17:31

842 Views

Introduction A queue is a linear data structure that inserts and removes queue elements in a particular order. We can implement a queue in C++ by using arrays and a linked list. Both queue implementations have their benefits and uses. In this tutorial, we will differentiate the array-based Queues and ... Read More

Advertisements