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

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.

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)