Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nishant7372/basic_data_structures

Basic Data Structures + LeetCode Problem Approaches
https://github.com/nishant7372/basic_data_structures

doubly-linked-list java leetcode linked-list singly-linked-list

Last synced: 21 days ago
JSON representation

Basic Data Structures + LeetCode Problem Approaches

Awesome Lists containing this project

README

        

### Basic_Data_Structures
Basic Data Structures + LeetCode Problem Approaches

### --> Array
1. [x] Sliding Window (Count, Max Length, Max Length SubArray)
2. [x] Binary Search (Binary Search, Lower Bound & Upper Bound)
3. [x] Ternary Search

### --> Linked List
1. [x] Singly LinkedList (Insert, Delete, Rotate, Partition & Utils)
2. [x] Doubly LinkedList (Insert, Delete & Utils)
3. [x] Circular LinkedList (Insert, Delete & Utils)

### --> Stack
1. [x] Stack using Array
2. [x] Java.util.Stack (Java Stack Class)

### --> Deque (Double Ended Queue)
1. [x] Java.util.Deque using ArrayDeque (Java Deque Class)