Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Data Structure

This application replicates Java Implementation of some common data structures. This is not a production code but used primarily for educational purpose only.

Big O Notation:

The Big O Notation of various Data Structures based on Implementation.

Data Structures Implementation Access Read Insert Add
List Array O(1) O(N) O(N) O(N)
List Linked List O(N) O(N) O(N) O(N)
Stack Array O(1) O(N) O(N) O(N)
Stack Linked List O(N) O(N) O(N) O(N)
Queue Array O(1) O(N) O(N) O(N)
Queue Linked List O(N) O(N) O(N) O(N)

About

Java Implementation of some common DataStructures

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages