DEV Community

Cover image for Data Structures Internal Implementations
Mohd Nisab Alam.
Mohd Nisab Alam.

Posted on

Data Structures Internal Implementations

Data Structures

We know how data structure plays an important role in interview preparation as well for problem solving.

Usually we use internal data structures and we don’t know how things are working behind. Using a data structure without knowing its working its useless. This data structure implementation are asked in interview and if you know how to implement a data structure you can design your own custom data structure according to your needs.

So you understood that data structure implementation will not only help you in interview but also can be used in development for creating custom structures. So from where we need to learn this?

I have made a GitHub repository containing all the internal collection framework of Java plus Data structures needed in daily
life. Below is the list of Data structures in my GitHub repo .

  • ArrayList
  • LinkedList (Single , Double , Circular)
  • Stack
  • Queues (Standard, Circular , Deque )
  • Trees ( Binary ,Binary Search , N-Arry )
  • Map ( HashMap , LinkedHashMap , TreeMap )
  • Set ( HashSet , LinkedHashSet , TreeSet)
  • Heap ( MaxHeap , MinHeap )
  • Trie
  • Graph

This repo is completely free and share with your friends and
star/fork the repo if its helping you. Happy Coding

GitHub logo nisabmohd / Data-Structures-Java

I've implemented a comprehensive set of generic data structures in Java, including arrays, linked lists, stacks, queues, trees, and more, ensuring versatility and efficiency in data handling.

Data Structure Implementations in Java

We know how data structure plays an important role in interview preparation as well for problem solving.

Usually we use internal data structures and we don’t know how things are working behind. Using a data structure without knowing its working its useless. This data structure implementation are asked in interview and if you know how to implement a data structure you can design your own custom data structure according to your needs.

So you understood that data structure implementation will not only help you in interview but also can be used in development for creating custom structures. So from where we need to learn this?

I have made this GitHub repository containing all the internal collection framework of Java plus Data structures needed in daily life. Below is the list of Data structures in my GitHub repo

S.NO Data Structure Prerequisite
1 Lists
S.NO Data

Top comments (0)