Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/vaibhavmojidra/data-structures---queue-using-linked-list-in-java
- Owner: VaibhavMojidra
- Created: 2022-04-04T11:06:30.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-04T11:11:16.000Z (almost 3 years ago)
- Last Synced: 2024-11-06T01:49:33.694Z (2 months ago)
- Topics: data-structures, java, linked-list, 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 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)