/ds-cpp

Class templates made by me for different data structures in C++.

Primary LanguageC++MIT LicenseMIT

ds-cpp


INTRODUCTION

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


SET-UP INSTRUCTIONS


BUILD & EXECUTE

  • For Windows users: firstly install make for executing makefile, from this link;
  • For Linux users: make generally comes pre-installed;
    • if not, then run the following command: sudo apt-get install make

  • Now, run the following commands:
  make singlyLinkedList # for singly liked list testing;
  
  make doublyLinkedList # for doubly liked list testing;



Happy DSA Learning! ;)