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

https://github.com/vaibhavmojidra/data-structures---stack-using-linked-list-in-java

A stack is a linear data structure that follows the principle of Last In First Out (LIFO). This means the last element inserted inside the stack is removed first.
https://github.com/vaibhavmojidra/data-structures---stack-using-linked-list-in-java

data-structures java linked-list mojidra stack vaibhav vaibhav-mojidra vaibhavmojidra

Last synced: 12 months ago
JSON representation

A stack is a linear data structure that follows the principle of Last In First Out (LIFO). This means the last element inserted inside the stack is removed first.

Awesome Lists containing this project

README

          

# Data Structures Stack Using Linked List in Java

Must read before going through code

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