these sessions help me a lot to learn java..hats up guys
@aarishfaiz788010 ай бұрын
Mam You are Really the best Instructor, Really your way makes DSA very easy Hope I will Meet you some day to say this to you.
@vivekbhore57222 жыл бұрын
thanks a lot need more videos on bst, graphs, implementations and algorithms :)
@sameerhussain11122 жыл бұрын
mam thank you so much for this wonderful course . i studied my whole DS course from your videos . mam sending you a lot of love from Pakistan.
@MH11_optimistic2 жыл бұрын
U made my coding journey easy❤️
@susheellattala9498 Жыл бұрын
for (int i =list.size()-1; i >= 0 ; i--) { int temp=list.get(i) ; list.addLast(temp); list.remove(i); } System.out.println(list); //this is also working in Single ended Linked list
@Gg69696 Жыл бұрын
Wah genius !! !! 😮
@Gg69696 Жыл бұрын
Ek baar batao mera code toh instead of answer... Garbage value return kr rha hai 😢 Kaise Roku isse..... Mai bhi vs Code use krta hoon.....
@nn_yt242 жыл бұрын
THE BEST TEACHER THE BEST CONTENT JUST GRATEFUL ❤️
@sindhujamaram58452 жыл бұрын
Very nice explanation didi, please continue the java placement series (trees, graphs).
❤️❤️ you dii bss aap jldi jldi video uploaded kro please 🙏🙏
@kanailalmanna50053 жыл бұрын
Thank you so much Aman bhaiya , Shradha di and all team members
@raunakgupta55282 ай бұрын
SHORTCUT: LinkedList x = new LinkedList(); x.add x.add x.add use- Collections.reverse(x); It will reverse linked list in one step...
@salmanpandey81502 ай бұрын
Then why learn full implementation
@nasimaaktar71932 жыл бұрын
Thank you, mam.If you can please make videos on advanced java. your lecture was very helpful to me.
@SM101702 жыл бұрын
Teri mai kya bumar teri
@kishandixit89282 жыл бұрын
+1
@worldofmanvik69132 жыл бұрын
@@kishandixit8928 yes
@sanjaykumar-bb1 Жыл бұрын
If you initiate your currentNode from head, then there is no need to check corner cases for an empty list or a list with only one element public static void reverseLLIteratively(){ Node previousNode = null; Node currentNode = head; // Starts from the head of the list Node nextNode ; while (currentNode != null){ nextNode = currentNode.next; // Store the next node in the list currentNode.next = previousNode; // Reverse the pointer // update previousNode = currentNode; // Update the previous node currentNode = nextNode; // Move to the next node } head = previousNode; // Update the head to the new start of the reversed list }
@shamsher5563 жыл бұрын
Linked List bahut good laga Thanks you so much didi ❤️❤️😗
@shrikrishnacrafts61002 ай бұрын
Thank You Ma'am 🙏🙏🙏🙏🙏
@abhayrajbhar93333 жыл бұрын
Technology is future.
@killer74952 жыл бұрын
Apna college is present
@uchihaPrincessSakura3 жыл бұрын
Didi nice explanation of Reverse a linked list
@explainco.13883 жыл бұрын
Love from tripura
@surajpandey74111 ай бұрын
when i am soving problems of leet code or hackerrank i am not able to solve the problems with the help of collections its showing error.
@5ksubscriberschallengewith6753 жыл бұрын
Didi aapka c++ course bhot acha hai but usme last ki kuch videos hide hai aur last ki kuch mujhe show nhi ho rhi what can I do? Please help me.
@RajveerSingh-pr2ol3 жыл бұрын
Di ek video C++ Vs Java
@sameertambolitybcs63383 жыл бұрын
There is no need,Java❤️
@null_cmd3 жыл бұрын
C++ is the best boi
@sameertambolitybcs63383 жыл бұрын
@@null_cmd you are on wrong path.
@null_cmd3 жыл бұрын
@@sameertambolitybcs6338 nope bro, u will not decide for me to take which path
@sameertambolitybcs63383 жыл бұрын
@@null_cmd So you'll also not decide and say that c++ is best and all that.
@onlineworld38383 жыл бұрын
Didi I i really inspired from your videos
@mudassershahzad36282 жыл бұрын
Best explanation 👍
@shwetanksudhanshu43832 жыл бұрын
very nice explanation..please continue this series again
@jayaraj54792 жыл бұрын
Very well explained!
@continnum_radhe-radhe2 жыл бұрын
Thank you very much 🔥🔥🔥
@rajeshgoudkatnam18197 ай бұрын
If you create a node( nextNode) in the loop for each iteration . May be Space complexity will be O(n)
@ruchitasalekar49563 жыл бұрын
00:10 she was talking about 'Algoexpert'😂
@hareeshkumar7570 Жыл бұрын
Thank you Ma'am. Make a complete playlist on python please. Your way of teaching is very nice. Rather than others.
@Rieshu-l9i9 ай бұрын
#Apna College & shradda didi rocks
@arunrawat21422 жыл бұрын
Pls Help: Is LinkedList-Scratch necessary or collections are enough?
@user-xi5wb3rn7u2 жыл бұрын
Look! for better understanding the concept of how things are working in the background you must know it from scratch this will be very helpful for you for solving questions on programming.
@supraja82862 жыл бұрын
@@user-xi5wb3rn7u In coding round for placements can we use collections.I solved this by traversing it from reverse and printed.Is it okay.
@vickysharma59974 ай бұрын
Sometimes interviewers ask to create a linked list from scratch
@herryhar34073 жыл бұрын
hey, I completed my bachelor's degree in mechanical engineering (2021 pass out), now for the master study in the USA I have to apply in MS SOFTWARE ENGINEERING, but I don't have any idea where to start learning it. I learned Basic C programming in my 1st year of college like prime numbers, basic maths, pattern making, etc. So suggest me a path to learn it. And which things I have to learn for MS SOFTWARE ENGINEERING.
@krishapandeyviditya55952 жыл бұрын
May I dear?
@krishapandeyviditya55952 жыл бұрын
Ab nhi denge wala scene.. Abhi nhi tih kvi nhi?
@037_cse_jananir7 Жыл бұрын
have u joined university?
@SohailAhmed-sy8xh3 жыл бұрын
make Video on the topic ke Software Engineering men jo minor or compulsory subjects hai unka koi faeeda hai ? Like Calculs , Basic Electronics , Digital logic Desing , Discrete Structure and Probility Statsitics ?
@plutomessi21 Жыл бұрын
Thank you so much didi watched alot of videos, asked my friend but still was confused Thank you again 🙏
@talhatanveer87192 жыл бұрын
private void printreverse(Node current) { // TODO Auto-generated method stub if(current!=null) { printreverse(current.getNext()); System.out.println(current.getData()); } this is a sharp way to print a linked list in reverse oder
@krishapandeyviditya55952 жыл бұрын
Hein.. Kch vi.. Chide chota bcho ke sath hi chota bnna padata hawe
@helikshukla58413 жыл бұрын
Make a video on difference between data science and data analytics👍
@krishapandeyviditya55952 жыл бұрын
See on my channel dude
@shvaibkhan43892 жыл бұрын
Is this complete series with all datastructure and algorithm
@bhavyamendiratta41966 ай бұрын
thanks, best explanation
@RitwikMandal3 ай бұрын
how the recursive function is working in the reverse linked list program can anyone explain please🙏
@priyanshu_rana3 жыл бұрын
Didi please make a video about rodemap of how to become a software engineer. Please didi
@mdfoysalahmed46122 жыл бұрын
Thanks for the recursive...
@kanailalmanna50053 жыл бұрын
GSoC 2022 me select ho paunga keya by only this course ????
@moju35263 жыл бұрын
I love to learn coding (Data Science) but unfortunately I don't have Laptop Or Desktop.
@Yogitmamania-032 жыл бұрын
mam next time agr aap reverse link list pr vedio bnaye toh pls orginal link list jese dikhti hain na like boxes proper or address dale hue hote hain pls proper manner main smjhna kyunki thoda typical tpoic lgta h mujhe ye thoda understanding bhi deeply ho jati hain orginal linklist se may be
@adityadhoble73963 жыл бұрын
Which book should I refer for JAVA as a beginner ?
@siddharthsingh28592 жыл бұрын
Brother, I think if you follow some tutorial or playlist from any YT channel, that's enough, book not needed.(its my personal opinion)
@oppoplayer72033 жыл бұрын
Please teach c++ in one video full large video by microsoft wali didi only 🤟 pakka
@rakeshsahoo2509 Жыл бұрын
Nice , explanation . I was not able to understand previously. Now i am able to understand. God bless you Shradha didi
@sameerkhan-xu4ve3 жыл бұрын
Di apna ek personal channel bnaiye
@shreyasingh46802 жыл бұрын
Thanks di!
@16avikasgupta702 жыл бұрын
One thing that i felt was that you were explaining how to solve this problem rather than explaining the intution behind it please try to inculcate that aslo otherwise very good explaination
@krishapandeyviditya55952 жыл бұрын
Kaisa intuition chahiye via aapko?
@anilptl2 жыл бұрын
T 2:30 aren't we supposed to do that with only doubly linked list
@anujnegi84742 жыл бұрын
Doubly or circular linked list nhi h playlist m
@nishant03124 ай бұрын
We can also use collections.reverse(list) method is it correct
Hello didi Mere college me computer Science and engineering && computer Science and design ye 2 couse he to isme kitna difference Hoga ? Which is better ?
@Whyycom Жыл бұрын
Huge respect china❤️
@manandeedwaniya97563 жыл бұрын
Didi plese make video , What is coding Some basic knowledge on coding how can we make apps ( From A to Z ) PLESE.
@jankiparmar70143 жыл бұрын
Hlo di, how can i fulfill minimum system requirements of windows 10..
@NadeemKhan-vp5qx3 жыл бұрын
Is this method is correct for reversing a linked list ? void reverseIterate() { Node current = head; Node prev = null; while(current != null) { Node nextNode = current.next; current.next = prev; prev = current; current = nextNode; } head = prev; }
@sankalpsoni50213 жыл бұрын
Yeah... Its correct
@abdurrab89472 жыл бұрын
Much better than what she told in video.
@aniketsrivastava18702 жыл бұрын
kay likha h pura blunder🤣🤣🤣
@AmitRaj-ds7tx Жыл бұрын
@@aniketsrivastava1870 go and learn 10th you don't deserve coding 😂
@aniketsrivastava1870 Жыл бұрын
@@AmitRaj-ds7tx daswi fail tu bataega mujhe coding woh toh mene sarcasm mein likh diya tha I didn't mean it ja jake for loop padh smjha unpadh
@aniketmishra713 жыл бұрын
Thank You!
@mahadevhulsure966911 ай бұрын
One shot for double linked list please
@komaltiwari19037 ай бұрын
How to reverse linked list using collection framework??
@Ayush-mn8jz Жыл бұрын
This playlist looks randomly arranged. Can anyone please let me know which video is first to watch in the playlist, which video is second, till last video. I know the content is good.
@kainaatmakhani65502 жыл бұрын
good job
@ayshwaryakatheria9366 Жыл бұрын
Is there any video on LinkedHashMap
@ujjawaldewangan83453 жыл бұрын
didi vedio ki frequency badhao because its is better then c++ due to pen paper
@asadullahallmamun31922 жыл бұрын
Need more video and explanation with debug the memory how to work it's help us please didi
@shubhiofficial16293 жыл бұрын
Didi I took bsc maths in Hindu College . Should I learn coding and how it will help me
@hjhjkoko19553 жыл бұрын
Aur lo bsc 😂😂😂😂😂
@shubhiofficial16293 жыл бұрын
@@hjhjkoko1955 tere pas kya h
@MH11_optimistic2 жыл бұрын
Mam please share most ask coding que for software testing
@krishapandeyviditya55952 жыл бұрын
I have check out on mine chnnel..
@satyamevjayate37403 жыл бұрын
Make a vedio for java programming in moblie
@Rpshortsvideo19973 жыл бұрын
plz i want more video of java
@chemtube38523 жыл бұрын
Java key liya kunsa book acha hoga??
@ieltsbaba84002 жыл бұрын
How in recursion java knows who is prev and next element? Can anyone please explain? In recursion we haven't modify the prev and next pointers then how it will know the links? please explain.
@krishapandeyviditya55952 жыл бұрын
Mai insaan hi hu.. May I do ielts baba dutiuyane?
@swarna63843 жыл бұрын
Is there any data structure course I this channel?
@rushikeshgavhane47957 ай бұрын
Not understand didi.. please explain dry run of code also.. so we can understand.. what is previous Ani current on graph
@prathamgupta16322 жыл бұрын
double aand circular linklist?
@chemtube38523 жыл бұрын
Ek video book key upar for coding
@utkarshtiwari17692 жыл бұрын
Why we are doing Question in online compiler it is gating so difficult to us to find that same question And then we don't have record of it Already classes ban chuki hai first question of this video ab usmein shru se start ku nahi hai pahle se define hai Ab agar ham jaenge Apne offline compiler jo hamne download kar rakha usmein work Karen acche se tu bahut bahut difficult pad raha hai ham logon Ko Palli hi nahi padh raha question
@infinite6392 жыл бұрын
circular and dobuly linked list
@masoomraza51553 жыл бұрын
my limit is that i can grasp algorithms of cormen understand kevin naughton jr youtuber problems and data structures of cormen 100% if you are 200% then only you are better than me
@Abaddon-u1i Жыл бұрын
I understood the iterative approach but didn't understand the recursive one, I guess I'm just too dumb to understand recursion.
@Gg69696 Жыл бұрын
Ma'am ne thik se samjhaya hi nhi 😢
@MajinBuu452 жыл бұрын
Thank you
@explainco.13883 жыл бұрын
1st view..
@VaibhawSingh-hz5tm Жыл бұрын
where I get DSA course
@edu-amplifier24513 жыл бұрын
Please make a review video on NIT Jalandhar. 🙏
@dakshchhabra99503 жыл бұрын
no
@edu-amplifier24513 жыл бұрын
@@dakshchhabra9950 Why no?
@P_R_lovebird11 ай бұрын
Nicely 🤦didi
@kanailalmanna50053 жыл бұрын
Didi Mai biology background se hu, only by this course is it possible to get select in GSoC , please help me to this ,
@siddharthsingh28592 жыл бұрын
"only by this course" - NO
@siddharthsingh28592 жыл бұрын
aur v cheezen padhna padega - Go do a google search for that
@tanushree2675 Жыл бұрын
solution of previous homework problem
@crackexamvibes82673 жыл бұрын
Hi everyone
@hometvfirestick2 жыл бұрын
Thanks
@rattanjotsingh24833 жыл бұрын
great!
@dancingindia242 жыл бұрын
how to reverse circular linked list
@aniketkeshri2263 жыл бұрын
when will next video launch??
@Sachin-wt9eo3 жыл бұрын
दीदी, Software Engineer students को placement के लिए अलग से पढ़ने की जरूरत क्यों होती है?? क्या college study students को placement ready नहीं बनाती है??
@ashishkumar-fd4gp3 жыл бұрын
nhi bhai nhi bnte
@Sachin-wt9eo3 жыл бұрын
@@ashishkumar-fd4gp kyon bhaiya
@ashishkumar-fd4gp3 жыл бұрын
@@Sachin-wt9eo kyuki woh updated course nhi hta h jo company mein use hta h comapnies abh new software new chijo mein aage ah gyi h or wohi clg ki book abhi bhi 7/8 saal purni chij prda rhi h