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

https://github.com/vaibhavmojidra/data-structures---queue-using-array-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-array-in-java

array arrays data-structures java mojidra queue vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 3 months 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 Array in Java

Must read before going through code

1. [Big O Notation.pdf](https://github.com/VaibhavMojidra/Data-Structures---Queue-Using-Array-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-Array-in-Java/blob/master/Documentation/How%20to%20identify%20Big%20O%20Notation.pdf)
3. [Queue Using Array.pdf](https://github.com/VaibhavMojidra/Data-Structures---Queue-Using-Array-in-Java/blob/master/Documentation/Queue%20Using%20Array.pdf)