#10 - How HashMap works internally || Popular java interview question on collection (HashMap)
HTML-код
- Опубликовано: 23 янв 2025
- In this video, I have explained How HashMap works internally, what is hashing and HashCode, what is indexing and how is it calculated from Hashcode?
This is a very popular java interview question on collection (HashMap).
References taken from:
Java 8 API Doc
Oracle Java 8 Source Code
Geeks of geeks
Full Java Collection Playlist:
• Latest Java Collection...
~~~Subscribe to this channel, and press bell icon to get some interesting videos on Selenium and Automation:
www.youtube.co...
Follow me on my Facebook Page:
/ naveenqtpexpert
Let's join our Automation community for some amazing knowledge sharing and group discussion on Telegram:
t.me/joinchat/...
Paid courses (Recorded) videos:
naveenautomati...
For Java & Selenium - naveenautomatio...
For API (Manual + Automation) - naveenautomatio...
I have read about this from multiple resources.But I had never seen it in real 'how exactly it works'.You have explained so beautifully.Its just amazing. I would say you are "THE DRONACHARYA" (who was was royal preceptor to the Kauravas and Pandavas.)
Thank you so much for making this awesome video.Its so clear and precise.Thanks
Most welcome:) keep learning 👍😃
@@naveenautomationlabs I want to get strong in logic building.I appeared for an interview but did not get selected in first round.They asked to write a program which would take input an Integer array having only zeros and ones and output will be sorted Integer like 000011111.I could not answer it.
Actually Naveen,I need a proper plan and guidance to get strong in my programming skills.Please guide me if you provide any personal training I would like to enroll for it as its high time and I want a change in my career.
@@soumyajit443 use Sort Class
int arr[] = {0,1,0,1,0,1,0,1,1,0,0,1};
Arrays.sort(arr);
System.out.println(Arrays.toString(arr));
o/p - [0,0,0,0,0,0,1,1,1,1,1,1]
@@soumyajit443 check his website. He s taking live classes
🙌take a bow Naveen . I searched this on internet and no one has explained it in such an easy way like you .
I appreciate your research on Hashmap implementation under the hood, I remembered my college day's Hashing concept implementation, now I see in reality in debug mode. Thanks, Naveen. this is called bridging the gap between institution and industry. :)
Thanks for your valuable comment. Thanks for your motivation.
Thanks sir....i searched many time for working of hashmap. But Didn't satisfied with explanation all they have. But after ur video now I am cleared about hashmap. Your explanation in simple and better 🙏 thnks sir
the best hashmap internal working video on youtube. OP🙌
This is the best explanation one can ever get on Hashing and Hashmap. Great explanation Naveen!
All my queries regarding Harshmap were cleared after watching this.Awesome work😊
Keep rocking..
Thankyou much Naveen
The best explanation on How hashmap works internally, I have seen so many videos but I get confused instead of understanding but this is PERFECT....Thank you...
Really appreciate your work and awesome explanation i saw several videos for hashmap implementation and work flow. But this is the BEST.
Thank you, sir, I can't even imagine how much hard work and research are required to create such knowledgeable content. thanks so much
Excellent explanation Naveen . I was so scared to learn the collections concept in java. But you have made it like a cupcake . Thanks much for your time and effort. I don't think even the paid courses will give this much explanation for each nuke and corners.
Thankyou Naveen Sir for your explanation! After banging my head for hours, and reading articles, finally found your video and understood how it works.
Entire RUclips ur explanation is just awesome
Very well and crisp with what is required and the clarity of topic stays longer in mind ..with so neat and clear explanation.Hope you keep posting more content on data structures and common topic which are required longer
RUclips really has some great teachers. If I get teachers like Naveen I would love to study all day.
Chal jhoota 😂
@@shubhambansal6903 😂😂😂Why bro
You always saves me in difficult situation where understanding is not easy. :D Thanks!!
@naveenautomationlabs loved the explanation . Its actually amazing how you take this valuable time in explaining and putting out the most relevant explanation. Actually a FAN of yours.
Thanks Shruti. Glad that it was helpful 😀
super. simple and clear explanation. i have searched many videos. nothing compared to urs. great and thank you so much for helping us out
Thanks, Naveen for creating this whole java collection video series. In this series, you have really explained each and every collection framework topic in an awesome way and In fact, I am following a couple of automation tutors on RUclips but no one has explained these topics in such an easy and understanding way. 😊👍👍
Glad I came across this video. What a wonderful explanation. Thanks a lot!!
Explanation followed by the important notes was very helpful. Really appreciate this Quality content.
Thanks !! After searching more for hashmap internal structure this one is the best explanation
Excellent explanation. Many many thanks for this kind of video. Recollecting my old college day topics now...
really good explanation... learning from your channel is very much easier than reading stuff on internet and reading books... precise explanation with good examples clears the concept easily rather than getting confused in it... appreciate your efforts and your easiness towards teaching these concepts... you do it so confidently and so easily... thankyou so much...
The best out of the best Explanation I have even seen on this hashmap.. Thank you sir for the effort.. It's was 💯💯
You have explained this complex topic in a way which is very easy to understand.
Thank you very much sir.
You have done a wonderful job Naveen ! Thanks!
In Java 8, HashMap replaces linked list with a binary tree when the number of elements in a bucket reaches certain threshold. While converting the list to binary tree, hashcode is used as a branching variable. If there are two different hashcodes in the same bucket, one is considered bigger and goes to the right of the tree and other one to the left. But when both the hashcodes are equal, HashMap assumes that the keys are comparable, and compares the key to determine the direction so that some order can be maintained. It is a good practice to make the keys of HashMap comparable.
This JDK 8 change applies only to HashMap, LinkedHashMap and ConcurrentHashMap.
Very detailed and excellent explanation. Thank you, Naveen!
This is by far the best explanation.
Earlier I have tried to understand the "Hashing Concept" from several sources but it seems very confusing but the way you have expalain now this concepts has cleared now. So, Here after I can explain the hashing concept to anyone.
Thanks !! Naveen
Glad that you got the concept. :)
Thanks for the video Naveen and one of the best video to understand HashMap functions.
Wow.. what a wonderful explanation Naveen. Kudos to you for teaching this complex concept in such a simplified way. Really appreciate the hard work you would have put in to break this one brick by brick. :)
Thanks, Naveen for the clear explanation.
Thank you.. Explained in an understanding of this typical hash code topic..Really Good
What a wonderful explanation sir
You made this topic so easy
God bless you 🙏
Thanks for give the information, I have learned so much...now I can explain got the clarity about how hash map exactly work internally...
Glad it was helpful!
As always best and this specific is really awesome Video on Hashmap internal working .
Thanks Naveeen , this is Awesome explanation
Thanks a lot Naveen. This was much needed to understand the internal working. 😇 Especially the debugging how it is calculating the hashcode is ultimate.
Thanks for the video Naveen, very few content creators covers this topic.
Best Explanation For Hashmap , Thanks.
Thank you so much, sir, I can't even imagine how much hard work and research are required to create such knowledgeable content. thanks so much
Great Video finally it helped me understand how it works Thank You Naveen
really good. Thank you for posting the video. Very well explained
Explanation is precise and crisp and well documented thanks for this post.
Good way of teaching & explanation Sir.
theory with practical ,very well explained
Thanks a lot Naveen.
You are right, it really gets difficult to understand from documentation, we need practical implementation, and as always you made it easy :).
Very good explanation. Thank you so much
Superb explanation sir. Thank you so much for all ur efforts!
Best explanation of hash map
Your each video is so well explained .. after going through your videos my base is getting cleared on many topics .. keep making good videos.. god bless you for ur hard work ..🙏🙏
Good Explanation ❤❤ Thank you NAVEEN Sir
Thank you so much Naveen for detailed and clear explanation.
Superb Explanation Naveen now I understood the HashMap how its working...Thank you so much...
Superb explanation. I have never seen such a clean explanation. Thank you bro. Do more videos on tricky concepts like this
Awesome...very detailed explanation. Thank you Naveen !
Excellent session as usual. Things look so easy after your explanation.
Thanks for the efforts and time 😇
Thank you so much Naveen for this video, very detailed and excellent explanation you have given. I did really felt amazing.
Awesome explanation, but if the hashing explanation is more, like how it's calculating in which node the value will be inserting, then it will be the best-ever i saw in youtube.
Thanks Naveen, Useful video.
Yes this is the most important interview question I have also faced the same multiple times
yes it is. please prepare it.
Its awesome easy to understand
I will never forget this now. Thank you for making it so easy :)
My pleasure 😊
Amazing Naveen sir... today I got to know what is hashing and hashmap. thank u so muchh sirr.
Glad that you got the idea about it. Thanks for watching.
Exceptionally well explained , I would really like to express my gratitude for such a marvelous and clear explanation. To be honest I am able to understand and register it very nicely. Many thanks and God bless dear.
Thanks for the video Naveen, very few content creators covers this topic, and like this till now not available on RUclips 😊👍👍
Glad you liked it
Already cover this topic before 2 years check the links
ruclips.net/video/CojCE-ojdGY/видео.html
@@arnavpatil583 but naveen's explanation is at different level. he explained it really well.
@@ankitmahajan8295 I agre.
@@ankitmahajan8295 Absolutely correct Ankit, I am completely agree with you.
Awesome ♥ same index positions for Naveen and Tom. Thank you bro :)
Glad that you liked it. :)
Mindblowing
Excellent demonstration on HashMap. Thanks
Awesome !! It's a very detailed explanation and very interesting . 👍
Thanx for creating this video naveen today only i seen this hashcode and index prectically in deep 😊
Glad you liked it
Thank you for making this video. Loved your explanation, such an amazing content.
Best explaination i got so far👍
Appreciate your Work ,You Covered every Possible concept
Well explained sir, thank you so much.
Amazing. Just loved the explanation.
What an amazing explanation. Thanks :)
Wonderful and clear explanation 👏👏
Thanks much Naveen for the very detailed explaination.After subscribing to your channel started learning Automation core concepts with confidence. I couldn't even think of my youtube search without this "Naveen automation labs" prefix for Java, python, selenium, design patterns POM, BDD, Github, Jenkin's, concepts, etc, and whatnot.
Thanks for watching @Rajani :)
thanks for creating this video , helped me a lot in understanding this concept.
Best explanation found 😍
Great bro that's amazing explanation and easy to understand
Thanks for the video Naveen,Explained very neatly ,super :-)
You are welcome 😊
Really appreciate this quality content.Thanks a lot.
its very good and you have captured all the key points.
keep rocking .. Thanks
Well Done ... worth watching .. !!
Thanks a lot naveen for this great content.
I think while inserting means put missed one point: at 11.10
The value 4 is the computed index value where the Key will be stored in HashMap. In this case, equals() method check that both Keys are equal or not. If Keys are same, replace the value with the current value. Otherwise, connect this node object to the existing node object through the LinkedList. Hence both Keys will be stored at index 4.
was very helpful thank you
Thanks Naveen, really nice presentation.. 👍
Awesome! made me consontrate and understand perfectly. Thanks....
Really now only i can able to understand
Thanks Bro
You are awesome sir. Keep up the good work. Thank you😊
Keep watching, keep learning :)
this was really nice bro..thanks
Excellent explanation 👌👌
Nicely Explained Naveen
Very well explained. Thanks a lot
best video Sir
Keep posting Sir