algorithms_and_data_structures
algorithms_and_data_structures copied to clipboard
180+ Algorithm & Data Structure Problems using C++
again , removed all std , by adding only line of using namespace std .
added using namespace, just to reduce the effort of adding again and again std;
Link to question https://leetcode.com/problems/count-all-possible-routes/
Link to question https://leetcode.com/problems/ipo/
I have changed the code for better. I have added namespace std, so no need to use std:: again and again. I have used vector instead of pointer array. I...
Course Schedule code in C++
some important dynamic programming problems
Added 5 stacks questions which have been asked in interviews.