https://github.com/riju18/datastructure-and-algorithm
Data Structure & Algorithm
https://github.com/riju18/datastructure-and-algorithm
algorithm algorithms-and-data-structures data-structures oop-python python3 sliding-window two-pointers
Last synced: 6 months ago
JSON representation
Data Structure & Algorithm
- Host: GitHub
- URL: https://github.com/riju18/datastructure-and-algorithm
- Owner: riju18
- Created: 2019-04-20T06:03:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T05:42:36.000Z (almost 3 years ago)
- Last Synced: 2025-03-30T22:32:08.306Z (8 months ago)
- Topics: algorithm, algorithms-and-data-structures, data-structures, oop-python, python3, sliding-window, two-pointers
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structure & Algorithm
+ [Sorting](#sorting)
+ [Recursion](#recursion)
+ [Search](#search)
+ [Linear Data Structure](#linear-Data-Structure)
+ [Non-Linear Data Structure](#non-Linear-Data-Structure)
+ [Graph](#graph)
+ [Sliding window](#sliding-window)
+ [Two Pointer](#two-pointer)
# sorting:
+ bubble
+ insertion
+ merge
+ quick
+ selection
# recursion
# search:
+ binary
+ linear
# linear-Data-Structure:
+ link list
+ stack
+ queue
# non-Linear-Data-Structure:
+ tree
# graph:
+ BFS
+ DFS
# sliding-window:
+ Fixed size
+ Dynamic size
# two-pointer: