Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/amanmandal-m/algorithms

Algorithm and their users
https://github.com/amanmandal-m/algorithms

Last synced: about 8 hours ago
JSON representation

Algorithm and their users

Awesome Lists containing this project

README

        

Algorithms

# Sorting Algorithm
- Bubble Sort
- Selection Sort
- Insertion Sort
- Merge Sort
- Quick Sort
- Heap Sort

# Searching Algorithm
- Linear Search
- Binary Search
- Jump Search
- Exponentional Search

# Graph Algorithm
- Breadth- First Search (BFS)
- Depth- First Search (DFS)
- Dijstra's Algorithm
- Bellman- Ford Algorithm
- Floyd- Warshall Algorithm
- Prim's Algorithm
- Krushkal's Algorithm

# Dynamic Programming Algorithm
- Fibonacci Sequence
- Knapsack Problem
- Longest Common Subsequence (LCS)
- Longest Increase Subsequence (LIS)
- 0/1 Knapsack

# Greedy Algorithm
- Activity Selection Problem
- Huffman Coding
- Fractional Knapsack

# Backtracking Algorithm
- N- Queens Problem
- Subset Sum Problem
- Sudoko Solver
- Knight's tour

# String Algorithm
- KMP Algorithm
- Rabin- Karp Algorithm
- Z Algorithm

# Tree Algorithm
- Binary Search Tree (BST Operations)
- AVL Tree
- Segment Tree