-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31ee21c
commit 00ef352
Showing
9 changed files
with
62 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Backtracking Algorithms | ||
|
||
1- [N-Queens Problem](./n-queens.md) | ||
2- [Sudoku Solver](./sudoku-solver.md) | ||
3- [Maze Solving](./maze.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Cryptographic Algorithms | ||
|
||
1- [RSA (Asymmetric Encryption)](./rsa.md) | ||
2- [AES (Symmetric Encryption)](./aes.md) | ||
3- [SHA-256 (Hashing)](./sha-256.md) | ||
4- [Diffie-Hellman (Key Exchange)](./diffie-hellman.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Divide and Conquer Algorithms | ||
|
||
1- [Merge Sort](./merge-sort.md) | ||
2- [QuickSort](./quick-sort.md) | ||
3- [Binary Search](./binary-search.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Dynamic Programming Algorithms | ||
|
||
1- [Knapsack Problem](./kanpsack-problem.md) | ||
2- [Longest Common Subsequence](./longest-common-subsequence.md) | ||
3- [Matrix Chain Multiplication](./matrix-chain-multiplication.md) | ||
4- [Fibonacci Sequence](./fibonacci.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### Graph Algorithms | ||
|
||
1- [Dijkstra’s Algorithm (Shortest Path)](./shortest-path.md) | ||
2- [Kruskal’s Algorithm (Minimum Spanning Tree)](./minimum-spanning-tree.md) | ||
3- [Prim’s Algorithm (Minimum Spanning Tree)](./minimum-spanning-tree.md) | ||
4- [A* Algorithm (Pathfinding)](./pathfinding.md) | ||
5- [Floyd-Warshall Algorithm (All-Pairs Shortest Path)](./all-pairs-shortest-path.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Greedy Algorithms | ||
|
||
1- [Huffman Coding](./huffman-coding.md) | ||
2- [Dijkstra’s Algorithm](./dijkstras.md) | ||
3- [Activity Selection Problem](./activity-selection.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Searching Algorithms | ||
|
||
1- [Linear Search](./linear.md) | ||
2- [Binary Search](./binary.md) | ||
3- [Depth-First Search (DFS)](./depth-first.md) | ||
4- [Breadth-First Search (BFS)](./breadth-first.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
### Sorting Algorithms | ||
|
||
1- [Bubble Sort](./buble.md) | ||
2- [QuickSort](./quick.md) | ||
3- [Merge Sort](./merge.md) | ||
4- [Heap Sort](./heap.md) | ||
5- [Counting Sort](./counting.md) | ||
|
||
|