Skip to content

Commit 6e2eb2d

Browse files
committed
master changed to main
1 parent 41daf32 commit 6e2eb2d

File tree

24 files changed

+620
-423
lines changed

24 files changed

+620
-423
lines changed

CLRS/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@
1010
## Index
1111

1212
- III. Data Structures
13-
- [10. Elementary Data Structures](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/CLRS/10-Elementary-Data-Structures)
13+
- [10. Elementary Data Structures](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/CLRS/10-Elementary-Data-Structures)
1414

1515
| Question No | Solution |
1616
| :---: | :--- |
17-
| 10.1-1 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/10-Elementary-Data-Structures/10-1-1.py) |
18-
| 10.1-2 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/10-Elementary-Data-Structures/10-1-2.py) |
19-
| 10.1-3 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/10-Elementary-Data-Structures/10-1-3.py) |
20-
| 10.1-4 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/10-Elementary-Data-Structures/10-1-4.py) |
21-
| 10.2-1 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/10-Elementary-Data-Structures/10-2-1.py) |
22-
| 10.2-2 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/10-Elementary-Data-Structures/10-2-2.py) |
17+
| 10.1-1 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/10-Elementary-Data-Structures/10-1-1.py) |
18+
| 10.1-2 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/10-Elementary-Data-Structures/10-1-2.py) |
19+
| 10.1-3 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/10-Elementary-Data-Structures/10-1-3.py) |
20+
| 10.1-4 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/10-Elementary-Data-Structures/10-1-4.py) |
21+
| 10.2-1 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/10-Elementary-Data-Structures/10-2-1.py) |
22+
| 10.2-2 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/10-Elementary-Data-Structures/10-2-2.py) |
2323

24-
- [12. Binary Search Trees](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/CLRS/12-Binary-Search-Trees)
24+
- [12. Binary Search Trees](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/CLRS/12-Binary-Search-Trees)
2525

2626
| Question No | Solution |
2727
| :---: | :--- |
28-
| 12.1-1 | [Markdown](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/12-Binary-Search-Trees/12-1-1.md) |
29-
| 12.1-3 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/12-Binary-Search-Trees/12-1-3.py) |
28+
| 12.1-1 | [Markdown](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/12-Binary-Search-Trees/12-1-1.md) |
29+
| 12.1-3 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/12-Binary-Search-Trees/12-1-3.py) |
3030

3131
- VI. Graph Algorithms
32-
- [22. Elementary Graph Algorithms](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/CLRS/22-Elementary-Graph-Algorithms/)
32+
- [22. Elementary Graph Algorithms](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/CLRS/22-Elementary-Graph-Algorithms/)
3333
| Question No | Solution |
3434
| :---: | :--- |
35-
| 22.1-1 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/master/CLRS/22-Elementary-Graph-Algorithms/22-1-1.py) |
35+
| 22.1-1 | [Python](https://github.com/ramanaditya/data-structure-and-algorithms/blob/main/CLRS/22-Elementary-Graph-Algorithms/22-1-1.py) |
3636

DataStructures/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
## Contents
77

8-
- [Abstract Data Type](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/DataStructures#abstract-data-type)
9-
- [Computational Complexity Analysis](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/DataStructures#computational-complexity-analysis)
10-
- [Array](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/DataStructures/Array)
11-
- [Tree](https://github.com/ramanaditya/data-structure-and-algorithms/tree/master/DataStructures/tree)
8+
- [Abstract Data Type](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/DataStructures#abstract-data-type)
9+
- [Computational Complexity Analysis](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/DataStructures#computational-complexity-analysis)
10+
- [Array](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/DataStructures/Array)
11+
- [Tree](https://github.com/ramanaditya/data-structure-and-algorithms/tree/main/DataStructures/tree)
1212

1313
## Abstract Data Type
1414
An Abstract Data Type is an abstraction of Data Structures which provides only the interface to which a data structure must adhere to.

0 commit comments

Comments
 (0)