Class templates made by me for different data structures in C++.
- Want to Contribute? Please see this.
- Singly Linked List
- Doubly Linked List
- Binary Search Tree
- Max Heap / Min Heap
- Segment Tree
- Misc
- For Windows users: firstly install
make
for executingmakefile
, from this link; - For Linux users:
make
generally comes pre-installed;- if not, then run the following command:
sudo apt-get install make
- if not, then run the following command:
- Now, run the following commands:
make singlyLinkedList # for singly liked list testing;
make doublyLinkedList # for doubly liked list testing;
Happy DSA Learning! ;)