ADVANCED DSA in C++
Various complex DSA problems solved with ease with brief approach !
-
dyanamic programming solved using both the Memoized version(top down approach) and Tabulation version(bottom up approach)
-
Graph problems using the dfs and bfs approach mainly like frog positions arter t seconds and number of islands
-
priority queue which is basically the min/max heap solved a Hard leetcode problem sliding window median problem with brief approach
-
segment tree solved problem segment tree for the sum
-
Trie
-
Sweepline solved leetcode my calander problem