Тёмный

Java HashMap 🗺️ 

Bro Code
Подписаться 1,8 млн
Просмотров 73 тыс.
50% 1

Java hashmap tutorial explained
#java #hashmap #tutorial

Наука

Опубликовано:

 

30 май 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 148   
@BroCodez
@BroCodez 4 года назад
import java.util.HashMap; public class Main { public static void main(String[] args) { // HashMap implements the Map interface (need import) // HashMap is similar to ArrayList, but with key-value pairs // stores objects, need to use Wrapper Class // ex: (name,email),(username,userID),(country,capital) HashMap countries = new HashMap(); //add a key and value countries.put("USA","Washington DC"); countries.put("India","New Delhi"); countries.put("Russia","Moscow"); countries.put("China","Beijing"); //System.out.println(countries); //countries.remove("USA"); //System.out.println(countries.get("Russia")); //countries.clear(); //System.out.println(countries.size()); //countries.replace("USA", "Detroit"); //System.out.print(countries.containsKey("England")); //System.out.print(countries.containsValue("Beijing")); for(String i : countries.keySet()) { System.out.print(i+"\t"+"= "); System.out.println(countries.get(i)); } } }
@angelcastineira2561
@angelcastineira2561 3 года назад
thank you for sharing the code in the comments. saves a lot of pausing and rewinding :)
@ikebelida1528
@ikebelida1528 2 года назад
Bro can you make hash table stuff please..
@anakinronin5288
@anakinronin5288 2 года назад
Instablaster
@mangalmurmu6840
@mangalmurmu6840 8 месяцев назад
Yeah you have done correctly no mistake Keep it up😊😊😊
@salahSaad-ld8id
@salahSaad-ld8id 3 месяца назад
Thanks for really amazing video it's really helpful
@kayleighrenner829
@kayleighrenner829 2 года назад
Your short and clear explanations helped me a lot! Thank you
@britneyhanna6667
@britneyhanna6667 3 года назад
Clear explanation as always bro. Thank you this helped me with my assignment.
@desmiles1567
@desmiles1567 2 года назад
Easy and smooth as always Thanks a lot bro
@justinbanza4751
@justinbanza4751 2 года назад
Thank you for this video. Very clear and straight forward
@mctinemacrisp3120
@mctinemacrisp3120 2 года назад
Love from Germany
@monwil3296
@monwil3296 4 года назад
So simple 👌
@badeaadrian4529
@badeaadrian4529 2 года назад
Thank you. Your videos deserve way more atention!
@milo-ur8zp
@milo-ur8zp 3 года назад
thanks a lot man, crystal clear explanations
@ramie0n
@ramie0n Год назад
Thank you for all your efforts
@girl6994
@girl6994 4 года назад
That was what I really need to understand! Hashmap in java!
@aygula2834
@aygula2834 Год назад
Thank you so much for the easily understandable explanation!
@youmightdontknow450
@youmightdontknow450 6 месяцев назад
Allways perfact explanation❤
@wolanus
@wolanus 3 года назад
Great video. Thanks bro
@chetranqui
@chetranqui 2 года назад
Clear, succinct, and complete. Thank you for that.
@rene2936
@rene2936 Год назад
succ int
@IdoH-vf2yc
@IdoH-vf2yc Год назад
Hi Bro, hope you're doing well Your videos and explanations about Java and many other programming languages you have on the channel are excellent, understandable and very helpful. You make a complicated subject much simpler. I was wondering if you could add to the playlist, videos that explain the interfaces: List, Set, Map. And an explanation of their implementers: HashSet, HashMap, TreeMap, TreeSet, SortedMap, SortedSet, etc.
@lamias7712
@lamias7712 2 года назад
I like your time traveling, :D. Thanks for the videos
@ksboi29
@ksboi29 3 года назад
Great video.
@hermitmobile1742
@hermitmobile1742 2 года назад
Every time I watch these videos I am reminded that going to school is overrated … if only my teachers are this clear🤧🤧🤧
@ramgunta7707
@ramgunta7707 10 месяцев назад
Good one...simple and easy explanation...thank you bro 🙂
@neetuseharawat3241
@neetuseharawat3241 Год назад
Great explanation
@sureshponna3405
@sureshponna3405 2 месяца назад
Tqs for cleaning my mind with HashMap doughts😊😊
@sagarkathiriya
@sagarkathiriya Год назад
really easy. thanks for goos explanation.
@mauxcbr4879
@mauxcbr4879 2 года назад
Great Job!
@ardcodelover
@ardcodelover Год назад
Outstanding bro sir
@FukSN
@FukSN 2 года назад
Back on the Bro vids. Excellent as usual.
@polatsaryerli3071
@polatsaryerli3071 2 года назад
bro this is awesome wou put things down so concisely
@greenachos372
@greenachos372 2 года назад
Thank you bro!!!
@nkatekongobeni2665
@nkatekongobeni2665 6 месяцев назад
You make coding easy even though I'm mostly learning in theory and writing on pen and paper
@sergeyb6071
@sergeyb6071 4 года назад
very happy to see new java tutorials Bro!
@BroCodez
@BroCodez 4 года назад
I'll be updating this playlist more often. It seems there's a big demand for Java
@user-xe8vl9eh9l
@user-xe8vl9eh9l 3 года назад
@@BroCodez theres a big demand for knowledge in the world because most of them cant afford it and want to find free ways to learn .thank you so much for ur videos
@luoluoshomemade7169
@luoluoshomemade7169 2 года назад
really really nice!
@vpaulino15
@vpaulino15 Месяц назад
One thing that always confuse me more is long explanations, I really appreciate how you make this simple and straightforward
@Ahmad-td4ck
@Ahmad-td4ck 2 года назад
Thanks bro
@kemann3815
@kemann3815 2 года назад
Bravo 👏
@arrheniusmbakz6160
@arrheniusmbakz6160 3 месяца назад
You're the best Bro
@nawfalnjm5699
@nawfalnjm5699 3 года назад
Thank you
@khantko4670
@khantko4670 Год назад
Thank You bro
@honkhonkv2236
@honkhonkv2236 2 месяца назад
When i first heard about Sets and Maps i always thought i'd never use those but they are, in fact, actually easier than actual arrays, i'm kinda mind blown.
@navidreza4920
@navidreza4920 10 месяцев назад
wonderfull
@alexshepel5599
@alexshepel5599 3 года назад
Nice, bro!
@ibrahimylmaz8378
@ibrahimylmaz8378 2 года назад
thanks bro
@mohtasimhossain3741
@mohtasimhossain3741 Месяц назад
Bro is a hero❤❤
@rimarai7898
@rimarai7898 16 дней назад
I have been studying Java for 6 months, and my university, as much as the lectures try to help, is absolutely useless, especially for someone like me who suffers from learning disabilities, but your videos are amazing... I wish I found it sooner. They teach me things and help me understand in 1-3 days compared to a month and only half understanding it through my university. Thank you so much! I am been acing my tests with your tutorials xd.
@diamonddunyasi4945
@diamonddunyasi4945 7 месяцев назад
Thanks bro🙂
@harveers820
@harveers820 7 месяцев назад
this was great
@cherolphoshoko8670
@cherolphoshoko8670 2 года назад
thanks bro!
@ideaonic703
@ideaonic703 2 года назад
It's an Arraylist with objects as indecies.
@mysterymatt4761
@mysterymatt4761 Год назад
godly explanation.
@chickentendies5144
@chickentendies5144 Год назад
Good thing future bro popped in, I was confused AF and doubting myself.
@HolyMolyNEWTonMusicNProgrammer
I LOVE THIS!
@MrLoser-ks2xn
@MrLoser-ks2xn Год назад
Thanks
@Vinay_Thakur108
@Vinay_Thakur108 Год назад
❤️From India.
@xXMaDGaMeR
@xXMaDGaMeR 2 года назад
love you bro
@amankrmj
@amankrmj 3 года назад
Love From India😁😁😁😁
@thanhthanhtungnguyen8536
@thanhthanhtungnguyen8536 3 года назад
Nice video
@amankrmj
@amankrmj 3 года назад
I Helped You.... 😊
@rukiruki-eg4kc
@rukiruki-eg4kc Год назад
I too, think about Hashbrowns alot.
@nages1171
@nages1171 2 года назад
Keep it up
@jianlim276
@jianlim276 2 года назад
Yea!!
@sarthakoberoimusic
@sarthakoberoimusic 10 месяцев назад
a comment for the sake of defeating the algorithm.
@IDK-kv8ob
@IDK-kv8ob 6 месяцев назад
3:39 the diamond operator at the end of the instantiation does not need to take in the String values. Java infers the type from the first portion! Hey, I actually know something about Java. Feels good.
@AdrianTregoning
@AdrianTregoning 2 года назад
At 11:11, why does it not list the hashmap in the same order in which it was created? As always, great video. I started at video number 3 and this is number 76. Plan to do them all. Not just watching, but I'm doing them myself. Loving it. Your consistency in how you explain is remarkable.
@TheRealZitroX
@TheRealZitroX Год назад
A hashmap is not a list where you push elements at the end. Watch a video of a implementation of this method so you know more about it
@mini_dota
@mini_dota 2 года назад
Great
@samim2121
@samim2121 Год назад
Thanx
@talalbadreddine3978
@talalbadreddine3978 2 года назад
Hello is there a playlist for hash map , linked list , stack , Queue ? Thanks for your time.
@user-xs6on3cm7o
@user-xs6on3cm7o Год назад
Nice time-travel 🙂
@udaysaimanoj2117
@udaysaimanoj2117 Год назад
Nice
@leviplays7466
@leviplays7466 Месяц назад
you're the bro
@rokhafm9412
@rokhafm9412 Год назад
the best coding youtuber
@Laughing_india_
@Laughing_india_ Год назад
you make it too easy to understand
@hlonimalebana9896
@hlonimalebana9896 3 года назад
How do you check if a key value pair exists in the hashmap? I.e if capital of India is new Delhi?
@khoadiep3774
@khoadiep3774 2 года назад
Can you do a video about Treemap ?
@abisarwan20
@abisarwan20 3 года назад
could you make course of dsa which you implement code manually
@user-fi2vc2wt5n
@user-fi2vc2wt5n Год назад
I took tree speps I smashed the butten, subscribed and yes I`d like to become a fello bro ;)
@mensahtribeadventures2630
@mensahtribeadventures2630 2 года назад
😎💪🏾💪🏾
@pedroferreira8328
@pedroferreira8328 5 месяцев назад
💪
@CarlAngeloAntenor
@CarlAngeloAntenor 2 года назад
me: Searches how to make a hashmap and clicks on a vid also me: *INSTANTLY CLICKS ON ANOTHER HASHMAP VID CAUSE ITS BRO CODE*
@tasneemayham974
@tasneemayham974 Год назад
OUR BRO CAN TIME TRAVEL!!!
@fl4shgaming188
@fl4shgaming188 Год назад
Burger -> Patty Pizza -> Cheese Chapati -> Wheat Spring Roll -> BBQ
@kingkock1
@kingkock1 2 года назад
as allWays: Amazing
@manuelgonzalezpalafox2627
@manuelgonzalezpalafox2627 Год назад
Ly bro 5
@kristijanlazarev
@kristijanlazarev 2 месяца назад
Very good, could just write everything in a sout statement, so that we dont waste time talking about how it wont do anything unless we pritn
@mudzingwajonah7378
@mudzingwajonah7378 3 года назад
time travelling , Hey guys its bro from the future.
@arturshakhbanov7608
@arturshakhbanov7608 Год назад
Like
@eagle1341
@eagle1341 Месяц назад
Have you ever eaten grass? Because you are the GOAT! :)
@benderbg
@benderbg 8 месяцев назад
5:49 This aged well.
@mathialagant
@mathialagant Год назад
dropping comment
@mohanedomer9081
@mohanedomer9081 23 дня назад
ok
@damnjemy
@damnjemy Год назад
i need to learn how to combine hashsets and int ch = sc.jscnext()
@raphaelmorgan2307
@raphaelmorgan2307 3 года назад
every time you say we should like comment and subscribe to defeat the algorithm im like how do i subscribe again TnT bc ive watched like 30 of your videos i can only subscribe once lmao
@BroCodez
@BroCodez 3 года назад
Raphael Morgan You get a free pass my friend
@timo_b3
@timo_b3 Год назад
brooo why do u use da eclipse, intellij is the alpha bro tool
@bharathwajp1321
@bharathwajp1321 29 дней назад
Broo what about HashSet???
@elvastaudinger4991
@elvastaudinger4991 3 года назад
USA goes ROgue!!lol
@yamalaha9233
@yamalaha9233 4 месяца назад
bro
@girl6994
@girl6994 4 года назад
There are too many things need to understand, such as collections , list, especially Linkedlist, it is abstract. And tree map. I don’t understand what is tree map. In Chinese they say a word 红黑树 , which means red and black tree style to store hash code.
@BroCodez
@BroCodez 4 года назад
I wonder why it's called "red and black tree". That is an interesting translation
@ActualVital
@ActualVital 4 года назад
Bro Code I think he wants a video of a Red-Black tree with code.
@girl6994
@girl6994 4 года назад
Bro Code because if you use different color to mark a tree map, it will be more easy to find a certain hash code I think. For example base level is black, and second level is red, and third level is black. But I am also don’t know, why it is called black and red tree.
@girl6994
@girl6994 4 года назад
Calibre Yes! It is red-black tree. Sorry.
@jeronimo6742
@jeronimo6742 2 года назад
commenting, as it is my duty
@AayushkumarSingh-nd1hm
@AayushkumarSingh-nd1hm 4 месяца назад
Bye
@swiftyninja3535
@swiftyninja3535 7 месяцев назад
time to go back to the present
@LogicalFinds
@LogicalFinds Год назад
8:50 imagine if the USA’s capita was Detroit 😂
@amaanshaikh6868
@amaanshaikh6868 Год назад
😹
@dev_troy8903
@dev_troy8903 11 месяцев назад
USA = Washington DC China = Beijing Russia = Moscow India = New Delhi loved having an assignment at the end 😃
@exitspree
@exitspree 3 месяца назад
down below
Далее
Java custom exceptions 🛑
10:05
Просмотров 68 тыс.
Learn Hash Tables in 13 minutes #️⃣
13:26
Просмотров 302 тыс.
Блэк Кити в Биг Сити  😼
12:13
Просмотров 677 тыс.
Java enum 🪐
10:50
Просмотров 60 тыс.
Java generics ❓
22:04
Просмотров 96 тыс.
HashMap Java Tutorial #50
11:42
Просмотров 408 тыс.
Map and HashMap in Java - Full Tutorial
10:10
Просмотров 523 тыс.
Set and HashSet in Java - Full Tutorial
20:43
Просмотров 187 тыс.
Hash Tables and Hash Functions
13:56
Просмотров 1,5 млн
the new PS4 jailbreak is sort of hilarious
12:21
Просмотров 167 тыс.
Java serialization 🥣
21:13
Просмотров 68 тыс.
Java inheritance 👪
6:11
Просмотров 232 тыс.
How about that uh?😎 #sneakers #airpods
0:13
Просмотров 10 млн
😱НОУТБУК СОСЕДКИ😱
0:30
Просмотров 502 тыс.