algorithms_and_data_structures icon indicating copy to clipboard operation
algorithms_and_data_structures copied to clipboard

180+ Algorithm & Data Structure Problems using C++

Results 113 algorithms_and_data_structures issues
Sort by recently updated
recently updated
newest added

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...

some important dynamic programming problems

Added 5 stacks questions which have been asked in interviews.