Durga sir is the best teacher there is for Java and other technologies..thank you durga sir..keep sharing such beautiful knowledge with us...thank you again.
prakash yadav View 42 videos on Collections in Java, ruclips.net/video/rI3VkItC0eA/видео.html View 5 videos on JSF, ruclips.net/video/rAa1wwWLw1Y/видео.html View 50 videos on Oracle, ruclips.net/video/pX5WJctn3Kw/видео.html View 35 videos on Hibernate, ruclips.net/video/SZ8abQ3vmdc/видео.html View 115 videos on Data Structures, ruclips.net/video/oAAiBQFSEik/видео.html View 58 videos on Struts, ruclips.net/video/nYqsnrHGsQg/видео.html View 74 videos on Spring, ruclips.net/video/YpsFT50mths/видео.html View 41 videos on CRT, ruclips.net/video/fDRnKPyvR14/видео.html View 12 videos on JAVA Reflections API & Annotations ruclips.net/video/BxCw0uTxZRs/видео.html View 39 videos on Java Real Time Project Implementation on Spring,Struts & Hibernate, ruclips.net/video/iKnb0AgKZJ0/видео.html
Hello Durga, I appreciate you for sharing such a nice presentation, I went through all presentation. Also I liked your style of presentation very much, you should retain the same style that keeps people not getting board. Good of few things which i liked apart from the very good content you presented are "Arre linked list what is your second element" was really an awesome (telgu) strokes here and there is very nice :) Keep up good work and thanks brother.
Hello Karthikeyan. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28
Hello BIPIN. Thanks for your valuable feedback.It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
venu settivari View 42 videos on Collections in Java, ruclips.net/video/rI3VkItC0eA/видео.html View 5 videos on JSF, ruclips.net/video/rAa1wwWLw1Y/видео.html View 50 videos on Oracle, ruclips.net/video/pX5WJctn3Kw/видео.html View 35 videos on Hibernate, ruclips.net/video/SZ8abQ3vmdc/видео.html View 115 videos on Data Structures, ruclips.net/video/oAAiBQFSEik/видео.html View 58 videos on Struts, ruclips.net/video/nYqsnrHGsQg/видео.html View 74 videos on Spring, ruclips.net/video/YpsFT50mths/видео.html View 41 videos on CRT, ruclips.net/video/fDRnKPyvR14/видео.html View 12 videos on JAVA Reflections API & Annotations ruclips.net/video/BxCw0uTxZRs/видео.html View 39 videos on Java Real Time Project Implementation on Spring,Struts & Hibernate, ruclips.net/video/iKnb0AgKZJ0/видео.html View other videos on ADV JAVA ruclips.net/video/83jLqTAbqQU/видео.html
Thanks alot sir. I appreciate the crisp and clear way you teach. No bakwas only useful things :) But I wish you had good english speaking skill. Anyways you are awesome :)
sir , i have a doubt (please help me its confusing) You said insertion takes less time in doubly linked list than retrieval but even when we have to insert an element in linked list at a particular position we have to start from head node, and count till position where we want to insert the element . So won't it have O(n) time complexity just like retrieval where also we have to start from head and iterate till particular position . Sir below is the algorithm for insertion in linked list , wont it take same time as retrieval which is O(n). (note:I have not considered boundary cases here) Node n=new Node(int data); Node temp=head; int count=0; while(count
Yes, finding element means similar to searching it's o(n). but after insertion there is no shifting of elements like ArrayList. I don't know fully I thought like this.if it's wrong pls correct it.if u find any answer.
Sir , For adding elements at particular index in between must also be required to find out index of previous node then how come insertion operation is faster in LinkedList? for Ex. If I want to insert an element at 100th index then then this operation will also get impacted as before inserting a search for previous index is required which is a slow operation in LinkedList
Avatar Girase Linked list does not support random access, Random access here means, that you cannot directly access any element in a linked list similar to an array. In linked list you have to traverse each element (link) starting from the head and then you can access that element.l.get(n);This method also works the same way in the background. It traverse from the head and then retrieves the nth element Coming to adding an element in the middle in ArrayList a whole new ArrayList needs to be created and multiple shift operations need to be performed and hence insertion/deletion in the middle will take much more time as compared to insertion of objects in ArrayList as no shift operations are required.Hope I answered your question.
Bharath but if we want to add something at 20th position then can linkedlist directly access 20th element or it will come to it one by one accessing each element?
How is linkedlist faster than arraylist when it comes to adding/removing an element in the middle? Let's say we want to insert a element at 50th index in linkedlist so to do that we first need to get to the 50th element one-by-one from the head, then add that element there, so where the efficiency? I guess when we compare adding/removing an element in the middle wrt AL & LL then the LL would score over the AL only because in AL shifting of the elements are required which seem to be a expensive operation. I would appreciate if someone can clarify on this.
Hello Sir, Could you please tell what is the difference between these two methods add(0, "M") and addFirst("M") As both of these methods doing the same work add(0, "M") is I think the method of List interface, It is already there for the all Collection classes Then what is the purpose of addFirst() method
Sir what is the Difference between collection framework and data structure .. why I am asking because Data structure concepts are mostly used in Collection Framework(may I think) please clear me the doubt sir...
Adding element to middle is easy but how it's maintain index. Because when we add element is 2nd position then remaining all element index need to change
Why this error is coming for me? Exception in thread "main" java.lang.Error: Unresolved compilation problems: The method add(String) is undefined for the type LinkedList The method add(int) is undefined for the type LinkedList The method add(null) is undefined for the type LinkedList The method add(String) is undefined for the type LinkedList The method add(int, String) is undefined for the type LinkedList The method add(int, String) is undefined for the type LinkedList The method removeLast() is undefined for the type LinkedList The method addFirst(String) is undefined for the type LinkedList at LinkedList.main(LinkedList.java:6)
This is absolute gold!
Folks if you're preparing for a java interview write down and remember every line of this video
what questions were asked to u
"compiler will give you left and right" do i need to note down this line as well?
Sir you made it too much easy to study Collection Framework. Huge Respect for you sir!!!!
Durga sir is the best teacher there is for Java and other technologies..thank you durga sir..keep sharing such beautiful knowledge with us...thank you again.
you are the best teacher i have ever seen for explaining the in-depth concept of collections framework. Thank you very much 😊.
thanks for ur videos mr durga,doesn't matter english accent.just u keep rock man
prakash yadav
View 42 videos on Collections in Java,
ruclips.net/video/rI3VkItC0eA/видео.html
View 5 videos on JSF,
ruclips.net/video/rAa1wwWLw1Y/видео.html
View 50 videos on Oracle,
ruclips.net/video/pX5WJctn3Kw/видео.html
View 35 videos on Hibernate,
ruclips.net/video/SZ8abQ3vmdc/видео.html
View 115 videos on Data Structures,
ruclips.net/video/oAAiBQFSEik/видео.html
View 58 videos on Struts,
ruclips.net/video/nYqsnrHGsQg/видео.html
View 74 videos on Spring,
ruclips.net/video/YpsFT50mths/видео.html
View 41 videos on CRT,
ruclips.net/video/fDRnKPyvR14/видео.html
View 12 videos on JAVA Reflections API & Annotations
ruclips.net/video/BxCw0uTxZRs/видео.html
View 39 videos on Java Real Time Project Implementation on Spring,Struts & Hibernate,
ruclips.net/video/iKnb0AgKZJ0/видео.html
Durga Software Solutions
View 9 videos on ENUM,
ruclips.net/video/T1fMWwI9D1E/видео.html
View 16 videos on Serialization,
ruclips.net/video/bIzfrvdt7qM/видео.html
Absolutely,very great work...Concepts are Spoon Feeded...Excellent
This is good Explanation sir I dont know how to work collection but now I gain some knowledge
Glad to have this type of sir in our telugu state❤
Durga sir is the only one teacher in java the way explanation is very well👏
King of Core Java- Durga😊
Super explanation thank you sir.. you cleared all my doubts on linked list...now iam following all your classes
Amazing videos by you Sir. You explain the concepts very clearly.
Thanks a ton.
You are a great teacher..! your tuts helps me alot in my exams..! Thank you very much sir..!
King of java
you deserve 1 crore views
Very Informative video ever I have seen over linked listed. Thank you very much for enhancing my knowledge
Thanks a lot for all your sessions. So easy, clear and useful information for job.
You made it so easy sir thank you very much outstanding explanation....
Excellent teaching. Thank you very much sir.
Thanks for this awesome session
Hello Durga, I appreciate you for sharing such a nice presentation, I went through all presentation.
Also I liked your style of presentation very much, you should retain the same style that keeps people not getting board.
Good of few things which i liked apart from the very good content you presented are
"Arre linked list what is your second element" was really an awesome (telgu) strokes here and there is very nice :)
Keep up good work and thanks brother.
You are more than a god to java
superb Sirji..
Awesome. Just nailed it
I think even camera man can become java developer ! :P
True
Completed
Thank you Sir
Thank you sir!
Very detailed.. Nice work ..And very helpful
Hello Karthikeyan.
Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28
Too good
Really nice tutorials by u.. please make some tutorials on jdbc
thanks for ur videos mr durga
Oye, can u pls remove last element 😂haha totally loved it.
You are the best sir
Hello BIPIN.
Thanks for your valuable feedback.It will boost us to do new things. Please subscribe to get updates about new videos.
You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link:
goo.gl/kqvaf2
Durga Software Solutions already a subscriber from almost a year
nice job by durga
venu settivari
View 42 videos on Collections in Java,
ruclips.net/video/rI3VkItC0eA/видео.html
View 5 videos on JSF,
ruclips.net/video/rAa1wwWLw1Y/видео.html
View 50 videos on Oracle,
ruclips.net/video/pX5WJctn3Kw/видео.html
View 35 videos on Hibernate,
ruclips.net/video/SZ8abQ3vmdc/видео.html
View 115 videos on Data Structures,
ruclips.net/video/oAAiBQFSEik/видео.html
View 58 videos on Struts,
ruclips.net/video/nYqsnrHGsQg/видео.html
View 74 videos on Spring,
ruclips.net/video/YpsFT50mths/видео.html
View 41 videos on CRT,
ruclips.net/video/fDRnKPyvR14/видео.html
View 12 videos on JAVA Reflections API & Annotations
ruclips.net/video/BxCw0uTxZRs/видео.html
View 39 videos on Java Real Time Project Implementation on Spring,Struts & Hibernate,
ruclips.net/video/iKnb0AgKZJ0/видео.html
View other videos on ADV JAVA
ruclips.net/video/83jLqTAbqQU/видео.html
Durga Software Solutions
View 9 videos on ENUM,
ruclips.net/video/T1fMWwI9D1E/видео.html
View 16 videos on Serialization,
ruclips.net/video/bIzfrvdt7qM/видео.html
Nice
Please upload lectures on map also :) Second Half :P
please make some tutorials on jdbc
sir if u dont mind tell me retrieval defination plz
sir plz upload queues part in collection
Thanks alot sir. I appreciate the crisp and clear way you teach. No bakwas only useful things :) But I wish you had good english speaking skill. Anyways you are awesome :)
Nitin Kandwal he is teaching java not English literature.
sir , i have a doubt (please help me its confusing)
You said insertion takes less time in doubly linked list than retrieval but even when we have to insert an element in linked list at a particular position we have to start from head node, and count till position where we want to insert the element . So won't it have O(n) time complexity just like retrieval where also we have to start from head and iterate till particular position . Sir below is the algorithm for insertion in linked list , wont it take same time as retrieval which is O(n).
(note:I have not considered boundary cases here)
Node n=new Node(int data);
Node temp=head;
int count=0;
while(count
Hello Piyush.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28
Yes, finding element means similar to searching it's o(n). but after insertion there is no shifting of elements like ArrayList. I don't know fully I thought like this.if it's wrong pls correct it.if u find any answer.
Sir , For adding elements at particular index in between must also be required to find out index of previous node then how come insertion operation is faster in LinkedList? for Ex. If I want to insert an element at 100th index then then this operation will also get impacted as before inserting a search for previous index is required which is a slow operation in LinkedList
Avatar Girase Linked list does not support random access, Random access here means, that you cannot directly access any element in a linked list similar to an array. In linked list you have to traverse each element (link) starting from the head and then you can access that element.l.get(n);This method also works the same way in the background. It traverse from the head and then retrieves the nth element
Coming to adding an element in the middle in ArrayList a whole new ArrayList needs to be created and multiple shift operations need to be performed and hence insertion/deletion in the middle will take much more time as compared to insertion of objects in ArrayList as no shift operations are required.Hope I answered your question.
Bharath but if we want to add something at 20th position then can linkedlist directly access 20th element or it will come to it one by one accessing each element?
sir,i want short term definition of LinkedList (i mean one line defination)
Sir i have 1 doubt is there no pointer support then how cand node point to the next node or previous node in LinkedList
Hello Kshitij.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
How is linkedlist faster than arraylist when it comes to adding/removing an element in the middle? Let's say we want to insert a element at 50th index in linkedlist so to do that we first need to get to the 50th element one-by-one from the head, then add that element there, so where the efficiency? I guess when we compare adding/removing an element in the middle wrt AL & LL then the LL would score over the AL only because in AL shifting of the elements are required which seem to be a expensive operation. I would appreciate if someone can clarify on this.
Shift operations are more expensive
Awesome tutorials!!!!
PS: what's 'keep subating?'
+Mayur Kulkarni He means sub-heading
Oh wow that was deep :D
+Mayur Kulkarni Hahah..
He means keep summarizing.
+Heena Giri right heena what is ur mobile no
In last LinkedList demo program l1.remove Last(); not written in the image
Hello Rohini.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
Hello Sir,
Could you please tell what is the difference between these two methods
add(0, "M") and addFirst("M")
As both of these methods doing the same work
add(0, "M") is I think the method of List interface, It is already there for the all Collection classes
Then what is the purpose of addFirst() method
Hello Bharghav.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
to add new element as the Head node i think, because when u add an element to ArrayList by default, it adds at the ed of the List.
cool accent.
Sir what is the Difference between collection framework and data structure .. why I am asking because Data structure concepts are mostly used in Collection Framework(may I think) please clear me the doubt sir...
Hello Balaji.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
I have one doubt please clear that..Underlying data structure or underline date structure
Hello Friend.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
Sir, you have not discussed about the default size of linked-list.
Either we have to fix it or it can be dynamically changed
Please refer 16:10 from video, he explained there
Durga sir, whenever I use import java.util.*; it underline with yello mark . what should I do in such case?
Hello Ashish.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
simply means you did not use this package in your program, try one variable int count=0; and dont use it ,it will show you yellow mark.
Adding element to middle is easy but how it's maintain index.
Because when we add element is 2nd position then remaining all element index need to change
Hello Pradip.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
He has the content.
mohan chandra mallampati
View 42 videos on Collections in Java,
ruclips.net/video/rI3VkItC0eA/видео.html
View 5 videos on JSF,
ruclips.net/video/rAa1wwWLw1Y/видео.html
View 50 videos on Oracle,
ruclips.net/video/pX5WJctn3Kw/видео.html
View 35 videos on Hibernate,
ruclips.net/video/SZ8abQ3vmdc/видео.html
View 115 videos on Data Structures,
ruclips.net/video/oAAiBQFSEik/видео.html
View 58 videos on Struts,
ruclips.net/video/nYqsnrHGsQg/видео.html
View 74 videos on Spring,
ruclips.net/video/YpsFT50mths/видео.html
View 41 videos on CRT,
ruclips.net/video/fDRnKPyvR14/видео.html
View 12 videos on JAVA Reflections API & Annotations
ruclips.net/video/BxCw0uTxZRs/видео.html
View 39 videos on Java Real Time Project Implementation on Spring,Struts & Hibernate,
ruclips.net/video/iKnb0AgKZJ0/видео.html
View other videos on ADV JAVA
ruclips.net/video/83jLqTAbqQU/видео.html
View 9 videos on ENUM,
ruclips.net/video/T1fMWwI9D1E/видео.html
View 16 videos on Serialization,
ruclips.net/video/bIzfrvdt7qM/видео.html
View 13 videos on Garbage Collection,
ruclips.net/video/15o4-Qb--zg/видео.html
View 13 videos on java.Io Package,
ruclips.net/video/v4HS1Zhdh98/видео.html
View 13 videos on Regular Expressions,
ruclips.net/video/Ju8EybDDjBk/видео.html
Durga Software Solutions
Demo Sessions on youtube,
Language Fundamentals(16 Videos)ruclips.net/video/eTXd89t8ngI/видео.html,
Operators & Assignments(7 Videos)ruclips.net/video/1JGOPhIyhAM/видео.html,
Flow Control(6 Videos)ruclips.net/video/X6rS9vD9-qM/видео.html.
what if i store the address of each node in a array? the best data structure ever??Rookie here
what is the implementation of double linked list?
Super super sir chala video chusa artam kala but edu easy ga velli poindi burraloki 🫡
Sir what is the default capacity of LinkedList pls telme
Hello Raju.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
Why this error is coming for me?
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
The method add(String) is undefined for the type LinkedList
The method add(int) is undefined for the type LinkedList
The method add(null) is undefined for the type LinkedList
The method add(String) is undefined for the type LinkedList
The method add(int, String) is undefined for the type LinkedList
The method add(int, String) is undefined for the type LinkedList
The method removeLast() is undefined for the type LinkedList
The method addFirst(String) is undefined for the type LinkedList
at LinkedList.main(LinkedList.java:6)
Hello George.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@@DurgaSoftwareSolutions I called and they told me I have to be a registered student for them to clear my doubt
😂
I have a query:
In Java there are no pointers, then how are next and previous node values handled?
Rohit Raikar references are used in place of pointers
If people say show me god I will show them the playlist
remove "lust" ?
Songs
ccv
Sir you made it too much easy to study Collection Framework. Huge Respect for you sir!!!!