Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nishant7372/basic_data_structures
- Owner: nishant7372
- Created: 2023-01-19T19:57:02.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-06T04:51:04.000Z (almost 2 years ago)
- Last Synced: 2024-11-19T00:33:47.179Z (3 months ago)
- Topics: doubly-linked-list, java, leetcode, linked-list, singly-linked-list
- Language: Java
- Homepage:
- Size: 85 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)