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

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

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