https://github.com/ajaybiswas22/ds-and-algo
Implementing all popular problems of data structures and algorithm
https://github.com/ajaybiswas22/ds-and-algo
algorithm algorithms bfs breadth-first-search bubble-sort data-structures depth-first-search dfs ds insertion-sort linked-list radix-sort searching-algorithms selection-sort sorting-algorithms
Last synced: about 2 months ago
JSON representation
Implementing all popular problems of data structures and algorithm
- Host: GitHub
- URL: https://github.com/ajaybiswas22/ds-and-algo
- Owner: ajaybiswas22
- License: mit
- Created: 2021-07-19T20:37:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-08T07:43:46.000Z (about 4 years ago)
- Last Synced: 2025-06-18T23:37:05.879Z (6 months ago)
- Topics: algorithm, algorithms, bfs, breadth-first-search, bubble-sort, data-structures, depth-first-search, dfs, ds, insertion-sort, linked-list, radix-sort, searching-algorithms, selection-sort, sorting-algorithms
- Language: C++
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ds-and-algo
Implementing all popular problems of data structures and algorithm.
## Under Development
### Implemented Data Structure
#### Linked List
* Singly Linked List
* Doubly Linked List
### Implemented Algorithms
#### Searching
* Linear Search (Iterative and Recursive)
* Binary Search (Iterative and Recursive)
* Depth First Search (Iterative and Recursive)
* Breadth First Search (Iterative and Recursive)
* Finding number of Islands using DFS
#### Sorting
* Bubble Sort
* Modified Bubble Sort
* Recursive Bubble Sort
* Insertion Sort
* Selection Sort
* Quick Sort
* Merge Sort
* Radix Sort
* Topological Sort