DEV Community

Cover image for Data Structures Internal Implementations
Nisab Mohd
Nisab Mohd

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

AWS Q Developer image

Your AI Code Assistant

Automate your code reviews. Catch bugs before your coworkers. Fix security issues in your code. Built to handle large projects, Amazon Q Developer works alongside you from idea to production code.

Get started free in your IDE

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay