Really liked the idea of explaining through slides also. And thanks for explaining the functionality for Java 7 and Java 8 separately; insightful indeed.
I am really thankful for your videos I just wanted to share that Hashcode is not the parameter for branching in the collision. When a HashMap in Java (Java 8 and later) encounters a bucket with many collisions, it may convert the linked list of entries in that bucket into a balanced tree (specifically a red-black tree). However, the hash code itself is not directly used as the branching variable in the tree; instead, the key's natural ordering or a comparator (if provided) is used to maintain order.
Thank you for taking us through the source code of these classes. I used to be afraid of checking such files. But this is how we get to learn good coding practice also.
I was searching for this type of video for a long time. This video is very informative and helped me better understand the concepts. Thanks for sharing such insightful content.
Hi Mam! You are helping us a lot. Please keep teaching like this And also if possible please make a complete session on Collections frame work end to end. There are many tutorials on youtube, but nobody can teach us the way you do. I found your tutorials very helpful and easiest way to understand.
Sure Sai. Thanks a ton for the nice words. We do have videos on collection framwork. Can u plz tell what all topics u need apart from what are uploaded.
Ur videos are too good to prepare for interview. I have a question here. Whe linked list is converted into binary tree then which hash code is used to determine the left or right node? As per my understanding hash code of all keys is same because of which collision is happening so now which hash code to use for node calculation?
The content is really great, explaining everything in details which makes the internal working of HashMap and HashSet very clear. However, I have one question. Do we need this understanding for programming in real projects as generally we need to use HashMaps and HashSets to store and retrieve collection data and can also iterate using iterators, or is this just for interview purpose ?
13:32 “while converting the list to binary hashcode is used as branching variable” - couldn’t get this part as hashcode is same then they are getting converted to linked list and then equals method is being used to add the values in the linked list. So the question is if it has reached a certain threshold and then how different values of hashcode can come to get converted into tree?
Thanks! Could you please do a video of executor service future get and completablefuture from java how to handle if anyone executor service tasks takes too long
Hi I have one doubt In bucket, all elements with same hascode only? Is it possible, different hashcodes in same bucket as you mentioned in video@13:59?
How can we use hashcode to compare elements while adding to the binary tree. Unless the hashcode was the same we wouldn't push in the same bucket. Right.?
I have a doubt if anyone could help. Since all entries within a bucket index have the same hash code (due to being placed in the same bucket), how can the hash code determine an Entry object's placement to left or right. Instead, the Comparable interface or custom comparator only will be used to maintain the ordering within the binary tree. Am I getting it right? Since not the whole bucket is changed to a Binary tree, only a particular bucket index is!
@shashwatidash8524 as per my understanding, the first element(for particular bucket) which you will be adding , will be acting as root node of that tree.
Dose Linked List in the bucket (specific index calculated after hashing) is going to convert to tree or is it the complete bucket is getting converted into tree a) if it is linked list at specific bucket index then how the hashcode less or greater then calculation will happen as per me at that point hashcode would be same for both element isn't it? b) if the complete bucket is getting converted into tree then why we are saying linked list will get convert to tree...if i heard right! 🤔🤔🤔 Please help me understand the concept
At 14:12 you mentioned that in tree the main comparison will be on the basis of hashcode, But in a bucket when there are several entries and all of them have same hashCode then how are we comparing on the basis of hashCode.
Very good explanation, but I have a doubt: while explaining handling collisions in java8 nd above, u mentioned that if the hash code is same in a bucket, then we go with comparing keys , but collision is caused because of same code na, my doubt is all the entries in a bucket will having same hashcode ryt that is how they are placed in a bucket , keys may be different but hascode remains same based on hashcode only we are choosing the bucket na, please clear my doubt.
All entries in a bucket may not have same hash value though they will have same index. Remember we first calculated hashcode which again converted to some hash value. This hash value is then mapped to some index. And this is the point where two different hash values may result in same index. So while doing get operation first hash values are equated and then keys are equated.
@@CodeWithCB sry what do u mean by hash code and hash value both are same ryt , for a given key we will find hashcode , what is hash value. I didn't get u, please elaborate
@@shivachanda2438 internal implementation of Hashmap frist calculates hashcode of key as per hashcode() given for key object. Then internally it converts this hashcode to hashvalue h using formula (h = key.hashCode()) ^ (h >>> 16) . This is done to spread keys across the array causing less collisions. And this hashvalue is used further to find actual index using formula index = (n - 1) & hash.
@@CodeDecode I was looking for below found it ,in future can you show some examples like say taking hashmap as parameter, taking hashmap returning list etc, no need for video you can post in github that would help, for you these might seem very simple and common task but for starters this would help a lot,thanks again for all your videos. // returning hashmap public HashMap asHashMap( K[] keys,V[] values ) { HashMap result = new HashMap(); if (keys == null || values == null || keys.length != values.length ) throw new IllegalArgumentException(); for (int i =0; i
Hi Mam, I have a doubt in the put() method of hashmap.. If the hashCode of few keys are same means all those will be stored inside same bucket in linked list format (if threshold is increased by 8 means it converts to balanced tree) * Right branch will be higher value of hashCode and left will be lower than that.. My Doubt is all the variables present in same bucket will have same hashCode.. Then how they will be compared while storing in balanced tree?
I also have the same doubt. How different hashcode can be present in same bucket because different objects will land on same bucket only when hashcode for them is same.
14:29 in second point how come is this possible that in one bucket will have keys with different hashcode as we assigned bucket on basis of hashcode itself. I guess binary search tree is based upon keys.
I'm also having the same doubt. The hashcode enters the bucket only if it is same and the keys are used to compare amongst the elements in that bucket. Im confused here..please explain here....
Explanation fine but i am unable to catch that flow. Listened more than 3times. Little bit confusion. Could you please explain in less technical way. Atleast one simple example
@@CodeDecode I listened in very slow motion and put a diagram in a paper. Then i understood the concept. I think it is fine for me. No need to do any other video with examples. Another thing is , I tried to donate thank you, but not redirecting to payment page. Will check and update you again.
Didi please please please please Me and You not going anywhere. If we learn well or quickly, it does not mean that you speak so fast. Please explain with some breath at normal speed or read calmly bs itna kahen hai please mam please
Really liked the idea of explaining through slides also.
And thanks for explaining the functionality for Java 7 and Java 8 separately; insightful indeed.
Thanks Rahul 🙂👍
The Best Video to understand Internal working of HashMap. Thanks a lot ❤
Thank you so much @code decode guys for your support. I cleared multiple interviews with your valuable videos. Hats off
thanks and all best Vijay for your future
This channel is underrated! Great work.
Thanks for nice words
I am really thankful for your videos I just wanted to share that Hashcode is not the parameter for branching in the collision. When a HashMap in Java (Java 8 and later) encounters a bucket with many collisions, it may convert the linked list of entries in that bucket into a balanced tree (specifically a red-black tree). However, the hash code itself is not directly used as the branching variable in the tree; instead, the key's natural ordering or a comparator (if provided) is used to maintain order.
Best video I've ever seen about HashMap's working!
Thanks Shreyash 🙂🙂
Hi Mam, All you videos are excellent and very helpful to clear interviews. Your are doing this video at 1 AM... Hatsoff to your dedication
Thanks a lot 🙂🙂. Yeah that's when we get spare time after office ends 😃. We all are working IT professionals. Btw nice observation 👏👏
Thank you for taking us through the source code of these classes. I used to be afraid of checking such files. But this is how we get to learn good coding practice also.
Very true Shekhar. Very glad to see u are going through them. 👏👏👏
I was searching for this type of video for a long time.
This video is very informative and helped me better understand the concepts.
Thanks for sharing such insightful content.
Thanks 🙏🙏👍
Excellent explanation of internals of hashmap as well as hasheet with proper proof
Thanks Arun 🙂👍
@@CodeDecodeone video for arrayList internals
Hi Mam! You are helping us a lot. Please keep teaching like this And also if possible please make a complete session on Collections frame work end to end. There are many tutorials on youtube, but nobody can teach us the way you do. I found your tutorials very helpful and easiest way to understand.
Sure Sai. Thanks a ton for the nice words. We do have videos on collection framwork. Can u plz tell what all topics u need apart from what are uploaded.
@@CodeDecode Linked List, Stack, Vector, HashSet Vs LinkedHashSet Vs TreeSet..Thanks in Advance..
You delivered a nice explanation. It was needed for interview because it is important. I found this video and it helped me out. Thanks.
Thanks Devanshu 🙂👍
Simple and accurate explaination - good job
thanks
Thankyou so much dear❤ your videos are good to go for interview topics.. crisp and perfect .. Interviewer bhi khush hojaye😂
Haha Thanks a lot Akanksha🙂🙂 and we will be happy when u land at awesome job Girl ❤❤. Keep learning keep rocking girl 🎊🎊👍👍👍👍🎂
you r an amazing teacher..
Thanks 🙂
Too good of explanation :) thanks lot - great work - keep going
Thanks Raghu 👍🙂
Have been checking all your videos..Inspiring work and content!!!
Thanks a ton Divya 🙂
Wonderful video explaining exactly what changed with Java8. Can you please create one for ConcurrentHashMap as well
Thanks 🙂Sure Aniket 🙂👍
Awesome Explanation
Thanks Krishna 🙂👍
Very good Explanation.
Thanks Vinay 🙂👍
Ur videos are too good to prepare for interview. I have a question here. Whe linked list is converted into binary tree then which hash code is used to determine the left or right node? As per my understanding hash code of all keys is same because of which collision is happening so now which hash code to use for node calculation?
Thanks Mam for such à deep knowledge. God Bless you. Keep posting 🎉
excellent explanation
Thanks 🙂🙂
nice explaination
Thanks
neatly explained what changed with Java8
Thanks
The content is really great, explaining everything in details which makes the internal working of HashMap and HashSet very clear. However, I have one question. Do we need this understanding for programming in real projects as generally we need to use HashMaps and HashSets to store and retrieve collection data and can also iterate using iterators, or is this just for interview purpose ?
After finding such great videos, I am feeling blessed :D Thanks a lot !
This is pure Quality Content !!
Thanks a lot Akash 🙂👍
Great explanation Mam.
Thanks 🙂👍
Nice explanation
Thanks 👍
Thanks, Your channel is very helpful...
Thanks a ton Gaurav. It means a lot 👍🙂🙂👍
13:32 “while converting the list to binary hashcode is used as branching variable” - couldn’t get this part as hashcode is same then they are getting converted to linked list and then equals method is being used to add the values in the linked list. So the question is if it has reached a certain threshold and then how different values of hashcode can come to get converted into tree?
Nice explanation.. Great help .. thanks
Thanks Abhishek 🙂👍
Keep up the good work!
Thanks Maarten 🙂👍
Thank you very much.. Could you please do if possible tree set and tree map
Nice topic. Sure we will do that
Thankyou for the video mam
You're welcome sreeja
Really liked the explanation can you please create a telegram channel so that we can have communication and polling advantage and discuss our doubts
Great explanation
Thanks Jeeba
Next Level
Thanks Vaibhav 🙂🙂👍👍
nice explanation keep it up we will support you and my request to you please make a video on time complexity and space complexity
Yeah that's s tough one to understand. We will create video on that soon 👍👍
@@CodeDecode thanks pl create on that topic
Thanks! Could you please do a video of executor service future get and completablefuture from java
how to handle if anyone executor service tasks takes too long
Nice topics Rajya, we will surely put video on these
Hi
I have one doubt
In bucket, all elements with same hascode only?
Is it possible, different hashcodes in same bucket as you mentioned in video@13:59?
I guess it should be when 2 keys that are different but having same hashcode?
Thanks for sharing!
🙂👍
How can we use hashcode to compare elements while adding to the binary tree. Unless the hashcode was the same we wouldn't push in the same bucket. Right.?
Great mam...
Thanks 👍🙂
I have a doubt if anyone could help. Since all entries within a bucket index have the same hash code (due to being placed in the same bucket), how can the hash code determine an Entry object's placement to left or right. Instead, the Comparable interface or custom comparator only will be used to maintain the ordering within the binary tree. Am I getting it right? Since not the whole bucket is changed to a Binary tree, only a particular bucket index is!
@shashwatidash8524 as per my understanding, the first element(for particular bucket) which you will be adding , will be acting as root node of that tree.
Dose Linked List in the bucket (specific index calculated after hashing) is going to convert to tree or is it the complete bucket is getting converted into tree
a) if it is linked list at specific bucket index then how the hashcode less or greater then calculation will happen as per me at that point hashcode would be same for both element isn't it?
b) if the complete bucket is getting converted into tree then why we are saying linked list will get convert to tree...if i heard right!
🤔🤔🤔 Please help me understand the concept
can you plz explain about memory allocation enhancement in 1.8 feature.
Mam, please make a video on multi threading concepts..with basic and advanced ..
th-cam.com/play/PLyHJZXNdCXsdUXzeeBZIADof_U-40jBJO.html
At 14:12 you mentioned that in tree the main comparison will be on the basis of hashcode, But in a bucket when there are several entries and all of them have same hashCode then how are we comparing on the basis of hashCode.
still usefull video
😊
Just a feedback - There is too much of juggling btw screens...
Understood. We will try to reduce it. 👍👍
Thank you!
🙂👍
Please continue all data structures (linear,non linear in graphs, hash table)
Sure 🙂👍
If same hashcode is there then what will happen in binary tree fornat how key can be comparable will you give example, it's confusing for me
Do you have any java course from beginner level to advanced in Core to Advanced java
do you have link for all the presentation slides that we can access? It will be really helpful to go through it as a revision before interview.
Very good explanation, but I have a doubt: while explaining handling collisions in java8 nd above, u mentioned that if the hash code is same in a bucket, then we go with comparing keys , but collision is caused because of same code na, my doubt is all the entries in a bucket will having same hashcode ryt that is how they are placed in a bucket , keys may be different but hascode remains same based on hashcode only we are choosing the bucket na, please clear my doubt.
All entries in a bucket may not have same hash value though they will have same index. Remember we first calculated hashcode which again converted to some hash value. This hash value is then mapped to some index. And this is the point where two different hash values may result in same index. So while doing get operation first hash values are equated and then keys are equated.
@@CodeWithCB sry what do u mean by hash code and hash value both are same ryt , for a given key we will find hashcode , what is hash value. I didn't get u, please elaborate
@@shivachanda2438 internal implementation of Hashmap frist calculates hashcode of key as per hashcode() given for key object. Then internally it converts this hashcode to hashvalue h using formula (h = key.hashCode()) ^ (h >>> 16) . This is done to spread keys across the array causing less collisions. And this hashvalue is used further to find actual index using formula index = (n - 1) & hash.
Thanks but do you have video of say passing hashmap as parameter etc
What do u need? M unable to understand the requirement. Can you plz elaborate?
@@CodeDecode I was looking for below found it ,in future can you show some examples like say taking hashmap as parameter, taking hashmap returning list etc, no need for video you can post in github that would help, for you these might seem very simple and common task but for starters this would help a lot,thanks again for all your videos. // returning hashmap
public HashMap asHashMap( K[] keys,V[] values ) {
HashMap result = new HashMap();
if (keys == null || values == null || keys.length != values.length )
throw new IllegalArgumentException();
for (int i =0; i
@@CodeDecode I had just given a suggestion,otherwise learnt a lot from your video series 👍
Maam, most of the comment section has the doubt of collision at 14:29 please explain the doubt, it is really confusing
Hi Mam,
I have a doubt in the put() method of hashmap..
If the hashCode of few keys are same means all those will be stored inside same bucket in linked list format (if threshold is increased by 8 means it converts to balanced tree)
* Right branch will be higher value of hashCode and left will be lower than that..
My Doubt is all the variables present in same bucket will have same hashCode.. Then how they will be compared while storing in balanced tree?
I also have the same doubt. How different hashcode can be present in same bucket because different objects will land on same bucket only when hashcode for them is same.
From where do you learn Java ? I also want to read from there.
Mostly docs helps us a lot in understanding the concepts
How will it work if the value is a list
Map m = new hashmap();
I hope to be that fortunate winner...
Plz Like✓ SHARE✓ SUBSCRIBE✓
traversing linked list and tree logn and O(n) then how hashmap complexity isO(1) ?
It's said best case complexity o(1) worst case o(logn)
14:29 how can we have different hash values if there is hash collision, it's bit confusing there 😮
14:29 im having doubt on why there will be different hashcodes in same bucket??
Yea.. same doubt. Linked list gets created when there is hash collision then how can be there different hash code values
14:29 in second point how come is this possible that in one bucket will have keys with different hashcode as we assigned bucket on basis of hashcode itself. I guess binary search tree is based upon keys.
I'm also having the same doubt. The hashcode enters the bucket only if it is same and the keys are used to compare amongst the elements in that bucket. Im confused here..please explain here....
Hashmap concept was awesome.. Hashset is not much clear.
How can we help Malai? What is unclear can u plz tell us so that we can clarify that to u?
Mam i went through the video again now it's clear. Thanks
Awesome Malai 🙂👍
please share the document of this class
Which document are you asking for Lakshmaiah?
👌👌👏👏👏🙏
Hi what will happen if we have overriden equals method but it always returns true.
Just do it in eclipse, if equal returns true every time then i think hashmap will store only 1 key if same has code come
1:27 Explain slowly
Explanation fine but i am unable to catch that flow. Listened more than 3times. Little bit confusion. Could you please explain in less technical way. Atleast one simple example
Sure we will do that👍👍
@@CodeDecode I listened in very slow motion and put a diagram in a paper. Then i understood the concept. I think it is fine for me. No need to do any other video with examples. Another thing is , I tried to donate thank you, but not redirecting to payment page. Will check and update you again.
Didi please please please please Me and You not going anywhere.
If we learn well or quickly, it does not mean that you speak so fast.
Please explain with some breath at normal speed or read calmly bs itna kahen hai please mam please
use chatgt thats way more clear
why is your voice shivering. Looks like you are worried of something. 👀
It might be cold here or mic u
Issues. Not sure. We will check 🙂👍
very confusing explaination . please make it short and understandable for interview pont of view purpose
it was bit confusing
Bad explanation
Hi Amit. Can you please suggest what went Wrong ? We will try to rectify the issue you faced
Hi mam can I know your name
Hello. You can call us team code Decode ❤️. Happy to be connected 🙂
Vest fello
Awesome explanation
thanks
nice explaination
😊