https://github.com/vaibhavmojidra/data-structures---linked-list-in-java
Linked List is a sequence of links which contains items. Each link contains a connection to another link. Linked list is the second most-used data structure after array.
https://github.com/vaibhavmojidra/data-structures---linked-list-in-java
data-structures java java-8 linked-list mojidra vaibhav vaibhav-mojidra vaibhavmojidra
Last synced: 12 months ago
JSON representation
Linked List is a sequence of links which contains items. Each link contains a connection to another link. Linked list is the second most-used data structure after array.
- Host: GitHub
- URL: https://github.com/vaibhavmojidra/data-structures---linked-list-in-java
- Owner: VaibhavMojidra
- Created: 2022-04-04T08:39:51.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-04T08:44:25.000Z (almost 4 years ago)
- Last Synced: 2025-02-16T01:13:52.815Z (about 1 year ago)
- Topics: data-structures, java, java-8, linked-list, mojidra, vaibhav, vaibhav-mojidra, vaibhavmojidra
- Language: Java
- Homepage: https://vaibhavmojidra.github.io/site/
- Size: 14.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures Linked List in Java
Must read before going through code
1. [Big O Notation.pdf](https://github.com/VaibhavMojidra/Data-Structures---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---Linked-List-in-Java/blob/master/Documentation/How%20to%20identify%20Big%20O%20Notation.pdf)
3. [Linked List.pdf](https://github.com/VaibhavMojidra/Data-Structures---Linked-List-in-Java/blob/master/Documentation/Singly%20Linked%20List.pdf)