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.
- Host: GitHub
- URL: https://github.com/vaibhavmojidra/data-structures---queue-using-array-in-java
- Owner: VaibhavMojidra
- Created: 2022-04-04T10:57:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-04T11:00:55.000Z (over 3 years ago)
- Last Synced: 2025-02-16T01:13:51.411Z (5 months ago)
- Topics: array, arrays, data-structures, java, mojidra, queue, vaibhav, vaibhav-mojidra, vaibhavmojidra
- Language: Java
- Homepage: https://vaibhavmojidra.github.io/site/
- Size: 14.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)