I have seen many videos on this topic but no one explained this topic as simpler and easy as you explained...thank you so much bhagwaan apki har muraad puri kare
Thankyou for so much detailed and simplified way of teaching HashMap. It is really helpful for anyone who wants to either learn fresh or just wants to revise again. Really Appreciate !!
Brother your explanation helps to easily understand the topic. ❤️❤️ One request if you can make a video one interview questions with different types of url mapping to the dispatcher servlet like /,/*,/** etc . It will be very helpful 🙏🙏
Hi Basant, Recently I got one question from interview that, will it create bucket of 16 when you create map instance? I did debug the code and found that it creates bucket when you first element into map. your explaination at 1:00
Very good explanation sir overall, but I have one little question about the hash collision, at min 5:38 you say that it first uses double equals (==) to check if they have the same hashcode, which means to check if they have the same reference right, if they result to have the same hashcode then it will just replace, but if they dont, then it will check if they have the same value (content) with .equals() method (key1.equals(key2)) right, if it is true then replace, if not then add the next node, is this well understood? please correct me if not
great explanation , and thanks for sharıng. Just little feedback maybe :) same pronunciation was distracting me time to time on focusing, such as zero (sounds g..), hash (has), etc. also some of saying 'ok , fine, right, after explaning something etc ' .
Very nice explanation Basant... One question if we change the content of employee object after adding as key in map then what happened.. And in case of immutable employee class what is the behavior of map. Thanks in advance..
5:03 Correct me if I am wrong but if (e1,"Dev") & (e3,"UI") both coincidentally have the same hash value, then wouldn't the hash value for second linked list at 6 be 1011, just like the linked list above it?
Guys, what is the out of it? Map map = new HashMap(); map.put("a", "B"); map.put("a", "C"); map.put(null, "C"); map.put(null, "C"); map.put(null, "A"); System.out.println(map);
Bro, can you make a video on mock interviews or can you make video on all common interview questions in Java, So that will be helpful to those who wants to change company....
Hi, why is the size is still one ? Car car = new Car("Seletos",2020); Map carMap = new HashMap(); carMap.put(car,"1"); carMap.put(car,"2"); System.out.println(carMap.size()); In car class, I have the following implementation of the equals and hashcode ? @Override public boolean equals(Object o) { return false; } @Override public int hashCode() { return 1; } car.equals(car) will give it false and it should have added it as the next node but its giving the size as 1 and only node its adding ? I am confused in this please help, if u got some time. is it ? if the keys are same then it first checks == if not then only it goes for equals comparison ?
@@Javatechie Yes 1 but it should go and check for equals method which would return false(because of overridden method) and would add the value as next node ? So it means for duplicate keys equals method is also not checked it simply replaces the value ?
Sir, what will happen, if a duplicate value is given to add, will it will check for duplicate value? Suppose if we have same value in index 1 and same value is send again to add on index 3, it will add or it will not add it?
@@Javatechie Yes i mean i'm sorry i'm a c# developer and we have a dictionary instead of hash map but i thought they were the same . thank you for pointing that out to me ❤❤
If put Method find same content what will happen? is it throw error or ignoring to store the content into that object? If e1.equals(e3 is it override e3 content?
5:38 here you said Map first internally used == operator to check the reference and if it is different then it will use equals method. But in the last diagram you haven't showed this ?
If u first put(null, 8); its stored in the 0 th index and if again u try to put(null, 9); Then that first entry get replaced by this new entry in the same 0th index as in hashmap duplicate keys are not allowed, if u try to add entry with same key it's gets override
It doesn't have linkedlist, it uses resizable array thsts why it fetch in O(1) time, if its linkedList it will fetch map.get(key) in O(n) which is wrong
Hello buddy, It depends on many things. It's usually O(1), with a decent hash which itself is constant time... but you could have a hash which takes a long time to compute, and if there are multiple items in the hash map which return the same hash code, get will have to iterate over them calling equals on each of them to find a match. In the worst case, a HashMap has an O(n) lookup due to walking through all entries in the same hash bucket (e.g. if they all have the same hash code). Fortunately, that worst case scenario doesn't come up very often in real life, in my experience. So no, O(1) certainly isn't guaranteed - but it's usually what you should assume when considering which algorithms and data structures to use. In JDK 8, HashMap has been tweaked so that if keys can be compared for ordering, then any densely-populated bucket is implemented as a tree, so that even if there are lots of entries with the same hash code, the complexity is O(log n). That can cause issues if you have a key type where equality and ordering are different, of course. And yes, if you don't have enough memory for the hash map, you'll be in trouble... but that's going to be true whatever data structure you use.
I have seen many videos on this topic but no one explained this topic as simpler and easy as you explained...thank you so much bhagwaan apki har muraad puri kare
I saw more than 50 videos on hashing , but this was the one which made me actually understand, thankyou sir.
Thanks Rohit. Keep learning 😃
bro , if there kar 2 null key then second value will be placed in ??
@@PIYUSH-lz1zq I think 0th bucket
@@Javatechie am I right?
Yes correct
Sidhi bat no bakwas vala explanation, straight, simple , good work sir
That is a very simplified and a splendid explaination of hashmap. Thank you so much sir.❤
Your explanation is to the point and very clear. Request you to also add how hashmap retrieval works when there is more than 1 key in the same bucket.
Okay i will buddy
In youtube have more than 1000+ videos same question but your video is very easy to understand.
Thanks buddy 😊
Great thank you so much just less than 10 mins you cleared lot of things
even thanks feels tiny for ur work
Extremely simplified explanation !!
Thankyou for so much detailed and simplified way of teaching HashMap. It is really helpful for anyone who wants to either learn fresh or just wants to revise again. Really Appreciate !!
Awesome watched 10 more videos on youtube before this .... not able tp understand concept... but u made it very simple ... Thanks alot
Brother your explanation helps to easily understand the topic. ❤️❤️ One request if you can make a video one interview questions with different types of url mapping to the dispatcher servlet like /,/*,/** etc . It will be very helpful 🙏🙏
Okay I will do that. This is kind of URL patterns
Bhai your tutorial clears all doubts most of the time
You are one of the underrated tech youtuber ...
Thanks buddy 🙂 for your word . Will hope to grow soon .
The BEST easy explanation out there, Thank you Sir 🤝
Bro I have seen a lot of videos , but this is by far the best explanation video i have seen on youtube clean, simple and clear.
Thanks buddy 😊. Glad to hear this ☺️
Super understandable videos..keep doing❤❤❤
thanks bro. useful for interviews. i am a java backend restful API project tech lead. will apply for job
When i thought of this q i thought of receiving answer from java techie. I search on TH-cam and first video your name came 😂
Hi, Could you please make a video on HashMap internal working in Java 8 or new addition in Java8 for HashMap?
Very clear explanation thank you sir
i understand very clear,thanks for explaining neatly🙂🙂
I am subscribing your channel just because of this video
Keep learning 👍 I believe you like other videos as well
Thank you so much for clear explanation.👏👏
It would be more helpful, if you explained about retrieving elements from hashmap.
Will do another video
Simple and clear thankyou
Thanks Basant! Video on working on ConcurrentHashMap will be helpful. Saw many videos, but still its not clear.
Sure i will do that
Thanks bro. It's really helpful for me to understand easily
Thanks, good an easy to understand
great explanation thank you so much 😍👏
All In one video Thank you sir 💖
Thank you so much for this explanation! It's really clear with the examples you did :D
Hi Basant, Recently I got one question from interview that, will it create bucket of 16 when you create map instance? I did debug the code and found that it creates bucket when you first element into map. your explaination at 1:00
That's correct but will cross validate and update you
very clear explanation... Thank you
Awesome explanation waiting more interviews questions videos
Simple and neat explain
Should have been more helpful if you explained the get process as well. Thank you
Simply awesome explanation brother 👌👌👌
Thanks brother 🤗
Very good explanation sir overall, but I have one little question about the hash collision, at min 5:38 you say that it first uses double equals (==) to check if they have the same hashcode, which means to check if they have the same reference right, if they result to have the same hashcode then it will just replace, but if they dont, then it will check if they have the same value (content) with .equals() method (key1.equals(key2)) right, if it is true then replace, if not then add the next node, is this well understood? please correct me if not
Yes your understanding is correct
Thanks you explained so well
Awesome explained, keep making such a good vedio .
best explanation. easy one
Very good explanation
Can you explain data retrieval for the same example?
Simple awesome explanation👍
great explanation , and thanks for sharıng. Just little feedback maybe :) same pronunciation was distracting me time to time on focusing, such as zero (sounds g..), hash (has), etc.
also some of saying 'ok , fine, right, after explaning something etc ' .
Like your videos, you explain the topic in very beautiful way, please make more videos on the interview questions...
Thanks buddy 😊
thank you soooo muchh ! you are the best
Awesome explination
Thank u it's was short and simple 🙌
Very nice explanation Basant... One question if we change the content of employee object after adding as key in map then what happened..
And in case of immutable employee class what is the behavior of map.
Thanks in advance..
If you will do get (key) you will get NPE
I love this channel's content
Thanks buddy but BTW what is
@@Javatechie haha, no, it’s ❤️ thanks for the content!
Yes, i got the internal hashing collision part
Bro you always bring great and interesting videos in eloquent way.
Thanks buddy 😊
Thanks for this info..God job sir
Thanks buddy
this is simplified. thank ..
Thank you!!! Very detailed
Thank you so much sir 🙏
brilliant explanation
Great explanation
5:03
Correct me if I am wrong but if (e1,"Dev") & (e3,"UI") both coincidentally have the same hash value, then wouldn't the hash value for second linked list at 6 be 1011, just like the linked list above it?
Welcome to java tikki ❤
Hey!!! Seriously well explained 😀❤️✨✨
Guys, what is the out of it?
Map map = new HashMap();
map.put("a", "B");
map.put("a", "C");
map.put(null, "C");
map.put(null, "C");
map.put(null, "A");
System.out.println(map);
Output will be a, C and null , A
Great Work Basant. Keep Growing.
Thanks buddy
Thanks sir🎉
I am not finding you concurrent Hashmap in your list, Please send the link
Sir please make videos on design patterns it is mostly Asking now a days in interview
Okay buddy I will
Nice explanation
Thanks 😊
You nailed it 🔥🔥🔥
Thanks Pratishruti 🙂
Bro, can you make a video on mock interviews or can you make video on all common interview questions in Java, So that will be helpful to those who wants to change company....
Hi vasu , please check below link it's already there for core java
th-cam.com/video/fFnuer3AD8Q/w-d-xo.html
Part 2 : th-cam.com/video/GO67C7V-IbQ/w-d-xo.html
@@Javatechie Thanks
Very well explained 👏
Great !!!
Hi,
why is the size is still one ?
Car car = new Car("Seletos",2020);
Map carMap = new HashMap();
carMap.put(car,"1");
carMap.put(car,"2");
System.out.println(carMap.size());
In car class, I have the following implementation of the equals and hashcode ?
@Override
public boolean equals(Object o) {
return false;
}
@Override
public int hashCode() {
return 1;
}
car.equals(car) will give it false and it should have added it as the next node but its giving the size as 1 and only node its adding ?
I am confused in this please help, if u got some time.
is it ? if the keys are same then it first checks == if not then only it goes for equals comparison ?
In both the case hashcode will be 1 only right which is again duplicate
@@Javatechie Yes 1 but it should go and check for equals method which would return false(because of overridden method) and would add the value as next node ?
So it means for duplicate keys equals method is also not checked it simply replaces the value ?
Hi bro can you make one vidow difference between 1.7 and 1.8 difference in HashMap internal architecture
Sure will do that
Thanks a lot bro❤
Sir, what will happen, if a duplicate value is given to add, will it will check for duplicate value? Suppose if we have same value in index 1 and same value is send again to add on index 3, it will add or it will not add it?
Awesome explanation bro 😊
Thanks Soumya 😊
You’re videos very helpful. Can you please do a video on java events
Java or spring events ?
@@Javatechie spring events
Okay I will do that
Nice thanks
5:47
I think if it finds the same reference or the same value it will throw an exception right ?
and there is no replacement happening there.
No it won't throw any exception just debug and see
@@Javatechie Yes i mean i'm sorry i'm a c# developer and we have a dictionary instead of hash map but i thought they were the same .
thank you for pointing that out to me ❤❤
bro , if there kar 2 null key then second value will be placed in ??
Lovely .
If put Method find same content what will happen? is it throw error or ignoring to store the content into that object?
If e1.equals(e3 is it override e3 content?
Good one Basant.
Thanks buddy 😊
Thank you
Awesome
5:38 here you said Map first internally used == operator to check the reference and if it is different then it will use equals method. But in the last diagram you haven't showed this ?
bro , if there kar 2 null key then second value will be placed in ??
Yes
If u first put(null, 8); its stored in the 0 th index and if again u try to put(null, 9);
Then that first entry get replaced by this new entry in the same 0th index as in hashmap duplicate keys are not allowed, if u try to add entry with same key it's gets override
Thank you so much ❤️
Awesome explanation. Thank you. Can you make video for springboot?
Tx sir
ok good,
but what is the importance of Next then?
It doesn't have linkedlist, it uses resizable array thsts why it fetch in O(1) time, if its linkedList it will fetch map.get(key) in O(n) which is wrong
Hello buddy,
It depends on many things. It's usually O(1), with a decent hash which itself is constant time... but you could have a hash which takes a long time to compute, and if there are multiple items in the hash map which return the same hash code, get will have to iterate over them calling equals on each of them to find a match.
In the worst case, a HashMap has an O(n) lookup due to walking through all entries in the same hash bucket (e.g. if they all have the same hash code). Fortunately, that worst case scenario doesn't come up very often in real life, in my experience. So no, O(1) certainly isn't guaranteed - but it's usually what you should assume when considering which algorithms and data structures to use.
In JDK 8, HashMap has been tweaked so that if keys can be compared for ordering, then any densely-populated bucket is implemented as a tree, so that even if there are lots of entries with the same hash code, the complexity is O(log n). That can cause issues if you have a key type where equality and ordering are different, of course.
And yes, if you don't have enough memory for the hash map, you'll be in trouble... but that's going to be true whatever data structure you use.
You should create captions, because they cannot be created automatically under Your video
Didn't get you buddy
I think, he is referring to Subtitles. You could add subtitles.
@@sivabalarasup7556 thats right
Bro in which company ur working on ?
Walmart buddy
If "key" is null then it will placed at 0th bucket then what if "Value" is also null ?
Hi sir please make video with Java 17 example
Thanks
Thanks Shiva 😊
thank you so muchh !!
How to access the entry having null key? like map.get("?");
what if two duplicatre was there in put() .you missed this VVVV.important concept
If key is duplicate it will be overriden
Yes
could you activate the subtitles? pls
Please click on CC while watching video. I already enabled it buddy 😊