|
2 | 2 |
|
3 | 3 | ## Algorithms |
4 | 4 |
|
5 | | -1. Searching Algorithms |
6 | | - 1. [Binary Search - both Recursive and Iterative Approach](Searching%20Algorithm/binarysearch.py) |
7 | | -2. Sorting Algorithms |
8 | | - 1. [Index](Sorting%20Algorithms/README.md) |
9 | | - 2. [Sorting Algorithms Code](Sorting%20Algorithms/sortingAlgo.py) |
10 | | - 3. [Random Numbers for Input](Sorting%20Algorithms/num.txt) |
| 5 | +### Searching Algorithms |
| 6 | + |
| 7 | +- [Binary Search - both Recursive and Iterative Approach](Searching%20Algorithm/binarysearch.py) |
| 8 | + |
| 9 | +### Sorting Algorithms |
| 10 | + |
| 11 | +#### [Index](Sorting%20Algorithms/README.md) |
| 12 | + |
| 13 | +- [Sorting Algorithms Code](Sorting%20Algorithms/sortingAlgo.py) |
| 14 | +- [Random Numbers for Input](Sorting%20Algorithms/num.txt) |
11 | 15 |
|
12 | 16 | ## Data Structures |
13 | 17 |
|
14 | | -[**Description**](Linked%20List/) |
| 18 | +### Linked Lists |
| 19 | + |
| 20 | +Find the detailed description on operations performed [here.](Linked%20List/) |
15 | 21 |
|
16 | | -1. [Linked List](/Linked%20List/linkedlist.py) |
| 22 | +1. [Linear Linked List](Linked%20List/linkedlist.py) |
17 | 23 | 2. [Circular Linked List](Linked%20List/circularLL.py) |
18 | 24 | 3. [Doubly Linked List](Linked%20List/doublyLL.py) |
0 commit comments