Whenever I see your video related to DSA, I am satisfied with the concept.
@srushtikale74556 ай бұрын
All your explanations are just best
@GAGGZz Жыл бұрын
please make a playlist on Stack, queue, HashTables tries etc. as your teaching is awesome please continue your ds playlist
@nikoo2811 ай бұрын
there are problems available on stacks and queues, just not in a playlist...will do that eventually :)
@adityajain34517 ай бұрын
@@nikoo28 sir please make a playlist so helpful
@sdkaraarslan11 ай бұрын
nice explanation with visuals and clear understanding, love this.
@AcashBrands Жыл бұрын
Great explanation sir ❤👍
@ousmanbah108 ай бұрын
He is the best
@Curiousity22Күн бұрын
4:34 But the elements enter from rear in queue: so order is 4, 8, 15, 16 ??
@divyakumardivyanshu42794 ай бұрын
understood
@DSA-q8qАй бұрын
❤❤❤
@sonuanand16710 ай бұрын
nice explanation..... please make playlist for linked-list.. lot's of people are struggling in linked-list.. Thanks!
@nikoo2810 ай бұрын
did you already check this out: kzbin.info/aero/PLFdAYMIVJQHN6J5-OCh7pbG0o8WHC9so3
@sumitraj68787 ай бұрын
class MyQueue { private Stack input; private Stack output; public MyQueue() { this.input = new Stack(); this.output = new Stack(); } public void push(int x) { input.push(x); } public int pop() { if (!output.isEmpty()) return output.pop(); while(!input.isEmpty()){ output.push(input.pop()); } return output.pop(); } public int peek() { if (output.isEmpty()) while (!input.isEmpty()) output.push(input.pop()); return output.peek(); } public boolean empty() { return (input.isEmpty() && output.isEmpty()); } } // thank me later!
@limitless61899 ай бұрын
wonderfull broo
@Blackswordsman28476 Жыл бұрын
You have playlists on all other data structures Can you make a playlist on stacks & queues too?
@nikoo2811 ай бұрын
i will try to find more problems that are explicitly on stacks and queues.