Skip to content

Commit f5290a7

Browse files
Update README.md
1 parent 26a0a80 commit f5290a7

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

README.md

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,36 @@
1-
## Additional Resources for Learning Data Structures in C++/C++11
2-
#### [-Torrent Link for Downloading Full Data Structures Course in C++ (by Abdul Bari)](https://github.com/HypertextAssassin0273/Data_Structures_in_Cpp/blob/main/Mastering_Data_Structures_and_Algorithms_using_C_and_C++.torrent?raw=true)
3-
#### [-Understanding C++ Standard-Template-Library (STL) (by BoQian)](https://youtube.com/playlist?list=PLA0_W94naaYmk0uFVkUnXv0SiMIP5Jjlb)
4-
#### [-Data Structures & Algorithms Cheat Sheet in C++](https://github.com/gibsjose/cpp-cheat-sheet/blob/master/Data%20Structures%20and%20Algorithms.md)
5-
#### [-Learn Complete Data-Structures & Algorithms (by Programiz)](https://www.programiz.com/dsa)
6-
#### [-List of Some Advance Data-Structures (Brief Introduction)](https://www.geeksforgeeks.org/advanced-data-structures/)
7-
#### [-More DS & Algo Resource Links](https://github.com/Developer-Y/cs-video-courses#data-structures-and-algorithms)
1+
## Additional Resources for Learning Data Structures in C++/C++11 <!-- comment: 1st section -->
2+
#### [- Torrent Link for Downloading Full Data Structures Course in C++ (by Abdul Bari)](https://github.com/HypertextAssassin0273/Data_Structures_in_Cpp/blob/main/Mastering_Data_Structures_and_Algorithms_using_C_and_C++.torrent?raw=true)
3+
#### [- Understanding C++ Standard-Template-Library (STL) (by BoQian)](https://youtube.com/playlist?list=PLA0_W94naaYmk0uFVkUnXv0SiMIP5Jjlb)
4+
#### [- Data Structures & Algorithms Cheat Sheet in C++](https://github.com/gibsjose/cpp-cheat-sheet/blob/master/Data%20Structures%20and%20Algorithms.md)
5+
#### [- Learn Complete Data-Structures & Algorithms (by Programiz)](https://www.programiz.com/dsa)
6+
#### [- List of Some Advance Data-Structures (Brief Introduction)](https://www.geeksforgeeks.org/advanced-data-structures/)
7+
#### [- More DS & Algo Resource Links](https://github.com/Developer-Y/cs-video-courses#data-structures-and-algorithms)
88

9+
## C++11 Special Custom Containers <!-- comment: 2nd section -->
10+
#### [a) Indexed Struct](/MY_DS_LIBRARY/Special_Structures/Indexed_Struct.hpp) &emsp; &emsp; [b) Multi Attribute AVL Tree Adapter](/MY_DS_LIBRARY/Special_Structures/Multi_Attribute_AVL_Tree_Adapter.hpp) &nbsp; [(View: Project Report)](https://hypertextassassin0273.github.io/assets/img/projects/DS-R-Project_Report.pdf)
11+
12+
## C++ Boost Library Reference Guide <!-- comment: 3rd section -->
13+
#### [a) Circular Arrays](https://www.boost.org/doc/libs/1_86_0/doc/html/circular_buffer.html) &emsp; &emsp; [b) Graphs](https://www.boost.org/doc/libs/1_86_0/libs/graph/doc/index.html) &emsp; &emsp; [c) Heaps](https://www.boost.org/doc/libs/1_86_0/doc/html/heap.html)
14+
#### [- Complete Library Documentation](https://www.boost.org/doc/libs/1_86_0/)
15+
16+
<!-- how to write the last two sections in Markdown using HTML? -->
17+
<!--
918
<h2>C++11 Special Custom Containers</h2>
1019
<p1>
1120
<b>
12-
<a href="/MY_DS_LIBRARY/Special_Structures/Indexed_Struct.hpp">a) Indexed Struct</a> &emsp;
13-
<a href="/MY_DS_LIBRARY/Special_Structures/Multi_Attribute_AVL_Tree_Adapter.hpp">b) Multi Attribute AVL Tree Adapter</a>
14-
<a href="https://hypertextassassin0273.github.io/assets/img/projects/DS-R-Project_Report.pdf">(Project Report)</a>
21+
<a href="/MY_DS_LIBRARY/Special_Structures/Indexed_Struct.hpp">a) Indexed Struct</a> &emsp; &emsp;
22+
<a href="/MY_DS_LIBRARY/Special_Structures/Multi_Attribute_AVL_Tree_Adapter.hpp">b) Multi Attribute AVL Tree Adapter</a> &nbsp;
23+
<a href="https://hypertextassassin0273.github.io/assets/img/projects/DS-R-Project_Report.pdf">(View: Project Report)</a>
1524
<b/>
1625
</p1>
1726
<h2>C++ Boost Library Reference Guide</h2>
1827
<p1>
1928
<b>
20-
<a href="https://www.boost.org/doc/libs/1_76_0/doc/html/circular_buffer.html">a) Circular Arrays</a> &emsp;
21-
<a href="https://www.boost.org/doc/libs/1_76_0/libs/graph/doc/index.html">b) Graphs</a> &emsp;
22-
<a href="https://www.boost.org/doc/libs/1_76_0/doc/html/heap.html">c) Heaps</a>
29+
<a href="https://www.boost.org/doc/libs/1_86_0/doc/html/circular_buffer.html">a) Circular Arrays</a> &emsp; &emsp;
30+
<a href="https://www.boost.org/doc/libs/1_86_0/libs/graph/doc/index.html">b) Graphs</a> &emsp; &emsp;
31+
<a href="https://www.boost.org/doc/libs/1_86_0/doc/html/heap.html">c) Heaps</a>
2332
<br><br>
24-
<a href="https://www.boost.org/doc/libs/1_76_0/">-Complete Library Documentation</a>
33+
<a href="https://www.boost.org/doc/libs/1_86_0/">- Complete Library Documentation</a>
2534
<b/>
2635
</p1>
36+
-->

0 commit comments

Comments
 (0)