Browse by Domains

Data Structures

Data Structures in Java

Data Structures in Java – A Beginners Guide 2024

Data structures are fundamental to any programming language. The choice of a particular data structure has a significant impact on the functionality and performance of Java applications, thus it is worthwhile to master data structures in Java. This guide will help beginners to understand what is data structures, what is data structures in Java, the […]

Data Structures in Java – A Beginners Guide 2024 Read More »

Data Structures using C

Data Structures using C | What are the Data Structure in C and How it works?

What is C Programming Language? What are data structures using C? Array Linked List Stack  Queue Binary Tree Binary Search Tree Heap Hashing  Graph What is C Programming Language? Designed by Dennis Ritchie First appearance- 1972 Uses extension .c or .h Developed to make assembly language work much easier Procedural Language Much faster Handles low-level

Data Structures using C | What are the Data Structure in C and How it works? Read More »

Data Structure interview questions

Top 50+ Data Structure interview questions

1. What is a Data Structure? Ans. A data structure is a way of organizing and storing data in a computer’s memory that one can effectively process data to be searched, traversed, or modified. By using data structure complex problems can be solved effectively. One can use linear data structure(Array, Linked List, queue, stack), or

Top 50+ Data Structure interview questions Read More »

java data structures

Data Structures and Algorithms in Java

All of us, irrespective of whether we have majored in computer science or not, have come across the term ALGORITHM. What exactly does this word mean? Let us discuss it with you in a very elusive manner. We will start explaining it to you with a basic level, and then will go to the veteran

Data Structures and Algorithms in Java Read More »

trees in data structure

Understanding Trees in Data Structures

We have all watched trees from our childhood. It has roots, stems, branches and leaves. It was observed long back that each leaf of a tree can be traced to root via a unique path. Hence tree structure was used to explain hierarchical relationships, e.g. family tree, animal kingdom classification, etc. This hierarchical structure of

Understanding Trees in Data Structures Read More »

graph in data structure

Representing Graphs in Data Structures

Graph Basics Contributed by: Ruchi Nayyar A graph can be thought of as a data structure that is used to describe relationships between entities. An entity can be any item that has a distinctive and independent existence. It could either be an actual physical object or an abstract idea. For example, an entity can be

Representing Graphs in Data Structures Read More »

Scroll to Top