Articles for author: Namita Chaudhary

Dynamic Data Structures

A data structure is a way of storing, organizing, and efficiently maintaining data concerning both time and space. Data structures can be of two types, static and dynamic data structures. Static data structures are the ones in which the size of the structure is predefined and fixed. On the other hand, dynamic data structures are the ones whose size ...

Difference Between Stack and Queue Data Structures

There are many data structures like arrays, linked lists, and trees that are used to organise the data in a particular manner. A stack and a queue are two other data structures that are used to organise data. Both of them are linear data structures, which means they store and retrieve the elements in a sequencial manner from the structure when required. Stack ...