Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vaibhavmojidra/data-structures---queue-using-linked-list-in-java

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue). Queue follows First-In-First-Out methodology, i.e., the data item stored first will be accessed first.
https://github.com/vaibhavmojidra/data-structures---queue-using-linked-list-in-java

data-structures java linked-list mojidra queue vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 23 days ago
JSON representation

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue). Queue follows First-In-First-Out methodology, i.e., the data item stored first will be accessed first.

Awesome Lists containing this project

README

        

# Data Structures Queue Using Linked List in Java

Must read before going through code

1. [Big O Notation.pdf](https://github.com/VaibhavMojidra/Data-Structures---Queue-Using-Linked-List-in-Java/blob/master/Documentation/Big%20O%20Notation.pdf)
2. [How to identify Big O Notation.pdf](https://github.com/VaibhavMojidra/Data-Structures---Queue-Using-Linked-List-in-Java/blob/master/Documentation/How%20to%20identify%20Big%20O%20Notation.pdf)
3. [Queue Using Linked List.pdf](https://github.com/VaibhavMojidra/Data-Structures---Queue-Using-Linked-List-in-Java/blob/master/Documentation/Queue%20Using%20Linked%20List.pdf)