Domus

Usual Collection for DSA

This is my set of resources and shortcuts for going through Data Structures and Algorithms.
You’ll find them well-compiled, and maybe not that expected.

Higher one are of higher priority. This will keep getting updated for sure, but do complete these. Please do go over STL first of all before moving on, cause doing everything from scratch, might be a great learning experience, but it’s stupidity, as you’ll take more time to grasp the same thing.

My approach of these are,

Some standard Resources I think are great and still left to follow

A few points I would like to mention:

const int debugging = true;
#define deb(x)                        \
  if(debugging)                       \
    std::cout << #x << " : " << x;    \
dsa
resources