Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/amanmandal-m/algorithms
- Owner: Amanmandal-M
- Created: 2024-09-16T16:57:28.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T20:13:05.000Z (about 2 months ago)
- Last Synced: 2024-09-18T21:47:02.729Z (about 2 months ago)
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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