HashMap Java Tutorial #50

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024

Комментарии • 431

  • @alexlorenlee
    @alexlorenlee  10 месяцев назад +2

    If you’re new to programming but want a career in tech, I HIGHLY RECOMMEND applying to one of Springboard’s online coding bootcamps (use code ALEXLEE for $1,000 off): bit.ly/3HX970h

  • @latedeveloper7836
    @latedeveloper7836 3 года назад +162

    Exemplary tutorial, as always. Timings + my notes below that might help others:
    1:45 An example of how hashmaps can help
    2:05 Creating and naming a hashmap
    2:40 How to add values to a hashmap using the .put method
    3:52 Why you should use a generic and data type for type safety when creating a hashmap + how to add this
    4:25 Why you need 'Integer' [i.e. class type] for a hashmap (can't take primitive 'int' type)
    5:00 Test print of hashmap (default output displays in set notation)
    5:30 Calling a specific value from the hashmap - .get call
    5:50 Start of more advanced hashmap functions - user + password example
    6:15 Creating a hashmap with specific type for type safety
    6:33 How to add users and passwords - .put method
    7:32 How to remove elements from a hash map - .remove method
    8:08 Check if hashmap contains a specific value - .containsValue
    8:42 Difference between Values and Keys in a hashmap using .containsValue and .containsKey method calls
    9:23 How to replace a value (password) - .replace method
    10:10 Key difference between hashmaps and array lists - hashmaps don't have a specific order whereas array lists have an index
    11:00 Simple summary of what a hashmap is

  • @enochphetteplace8729
    @enochphetteplace8729 5 лет назад +52

    This is actually the best description of HashMaps I have seen yet

  • @ulanalibek7225
    @ulanalibek7225 5 лет назад +114

    Yes the name itself used to make me think that this HashMap thing is one of the most complicated things in Java. Your tutorial made it look like a piece of cake. :) Thanks! keep up the good work.

    • @waterflowzz
      @waterflowzz 3 года назад +3

      It’s not complicated to use but the implementation of a hash map is a bit more complex than just a 2d array. Hashmaps use a hash function to store the key value pair so that it doesn’t have to go through the whole hashmap using a for loop, Big O(n), when looking for a key. The hash function lookup makes it so that it is Big O(1). In other words the hash function makes it so that the lookup of a key is faster.

  • @burakgul2136
    @burakgul2136 5 лет назад +225

    This video is awesome. Your english is clear and understandable. I like it 👍

    • @7own878
      @7own878 4 года назад +18

      Here, after concentrating to get what was said in the Indian accent, one time too often.

    • @bobbobertson9063
      @bobbobertson9063 3 года назад +7

      @@7own878 it gets tiring to heat the same accent from computer science tutorials all the time

    • @rxtechandtrading
      @rxtechandtrading 2 года назад

      I know...we can actually understand this man, unlike all the other idiots who make tutorials

  • @josephsanchez2061
    @josephsanchez2061 4 года назад +43

    I don't know if you'll see this since it's an older video but you're probably the only programming tutorial RUclipsr that's relatable. The rest of them are super smart and do know what they're talking about (so are you obviously) but for some reason, you admitting that a certain topic or part of a topic confuses you helps me understand the material more when you explain it.

    • @unitedtomato5444
      @unitedtomato5444 3 года назад +8

      He understands what not knowing something was like. I really appreciate that!

  • @nelimalu601
    @nelimalu601 4 года назад +194

    For anyone with a python background, hashmaps are the same as dictionaries.

  • @Greenmarty
    @Greenmarty 10 месяцев назад +1

    2:00 It's called HashMap because it uses hash key to access values in the background and implements Map interface and extends AbstractMap class.
    If you would write your custom HashMap it would be array of linked lists. Length of the array would not be equal to number of stored key-value pairs. Instead array stores linked list heads, where each list node has hash key, value and points to next node. Hash key is hash version of the key you inserted. To access the value nodes are iterated until hash key matches.

  • @groupcoop409
    @groupcoop409 5 лет назад +6

    Best hashmapping tutorial! super easy to understand well delivered! more tutorials to come THANKS! :D

  • @anilsuyal
    @anilsuyal 4 года назад

    i have watched too many java channels but i found you is the best the best thing about is you is you start to explain a topic in such a way that nothing more required to learn that perticular topic. please bother upload all the java tutorials like spring mvc swings etc.

  • @darthpepe6761
    @darthpepe6761 4 года назад +1

    I was working on a master order assignment where we had to make a map of cookie variety and its numBoxes sold. This video was very helpful since he basically said, here is the assignment. You're gonna need to know Maps. I appreciate the tutorials. Thank you so much.

  • @baotang5776
    @baotang5776 2 года назад

    I wonder how many people, beside me, who graduated IT thanks to you and John. I appreciate you.

  • @gnovakov
    @gnovakov 3 года назад +6

    Love your tutorials, so clear and concise! you just get to the point and it just makes sense!

  • @MaximumJoy
    @MaximumJoy 4 года назад +23

    This is so helpful. Your explanations and presentation are perfect.

  • @ahmediqbal9869
    @ahmediqbal9869 2 года назад +5

    for anyone that is wondering, it is called a HashMap because it uses a technique called hashing.

  • @Brlitzkreig
    @Brlitzkreig 2 года назад +2

    So glad to see how your channel has grown over time. You really deserve it!

  • @miriamarelymartinezcampos238
    @miriamarelymartinezcampos238 2 года назад +1

    I loved the names haha "happy" and "fun", thank you so much for your explanation you made easier to understand

  • @fakejake8723
    @fakejake8723 3 года назад

    Seriously you taught a semestre worth of studies under 20 min. I thank you. I couldn't figure this out until your video. Please make more videos on data structures. I get your explanations.

  • @sunmit_productions
    @sunmit_productions 4 года назад +2

    Thank you very much Alex! I was struggling with HashMap for all day, and your video really helped!!

  • @Sy3dNYC
    @Sy3dNYC 9 месяцев назад

    Bro say it’s confusing to him but now I just learn the concept in most simple way. Thank you bro 😂

  • @bieberfever161098
    @bieberfever161098 3 года назад +1

    I finally understood, thanks for the video!! Btw the sound of your keyboard is so satisfying😨

  • @ovey2214
    @ovey2214 3 года назад +2

    Thank you for explaining things so well. You make otherwise complicated things sound so easy to understand. Bless you brother!

  • @shirinall9080
    @shirinall9080 3 года назад

    This young dude is my favorite tutor in youtube !!

  • @mdhossain529
    @mdhossain529 4 года назад

    You are great my son. May God Bless you.I am 48 but steel I am your student. Thank you very much.

  • @GuitaristEliKing
    @GuitaristEliKing 4 года назад +1

    Couldnt imagine a better tutorial out there!
    Great Video man!

  • @thischannelisnomore1283
    @thischannelisnomore1283 5 лет назад +10

    Most useful on teaching me hashmaps, Thank you so much!

  • @abdullahmamun1823
    @abdullahmamun1823 3 года назад

    just as simple as u.thanks.it is a one kind of social work.we need people like u.

  • @chrismissed
    @chrismissed 4 года назад +1

    Dude, thank you so much for this video! I'm 2 years into a computer science degree program and this is the first explanation of a hash map that has made sense to me!

    • @richardpaynton8766
      @richardpaynton8766 2 года назад

      If you are 2 years into a computer science degree and you do not understand the basics of search time algorithms or hashing then either cut your losses and leave or find another service provider

    • @chrismissed
      @chrismissed 2 года назад

      @@richardpaynton8766 I appreciate the advice, but I only have 1 term left now until I graduate. But yes, my teacher was terrible.

  • @yogeshpandey9549
    @yogeshpandey9549 3 года назад

    the most simplified yet extremely informative tut on hashmap. great work m8 :)

  • @preetamackermann3038
    @preetamackermann3038 3 года назад +2

    You make everything so simple. Thanks a lot !

  • @danishuddin9752
    @danishuddin9752 Год назад

    The UI you created it beautiful!

  • @h0tar
    @h0tar 4 года назад +1

    That keyboard is amazing! Thanks for clearing up hashmaps for me, makes it easier when we get there at school.

  • @saxkMr
    @saxkMr 2 года назад

    now that's amazing how something so abstract to me has become instantly crystal clear. you are awesome!

  • @princeabdul4290
    @princeabdul4290 Год назад

    Your Videos are straight to the point , My Coding phobia isn't anymore because of your videos...

  • @sangeethamnair1395
    @sangeethamnair1395 3 года назад

    In a technical aptitude exams hashing question were asked ..had no idea what hashing was and didn't do well but now it is crisp and clear thanks to u Sir..

  • @RicardoPires2023
    @RicardoPires2023 4 года назад +2

    Hello Alex and thank you very much for your videos. They are awesome!
    For this video in particular, it was not clear to me what are the differences of HashMap and ArrayList, and how too choose which to use.
    Thank you again!

  • @lukedavis6711
    @lukedavis6711 3 года назад +1

    Its called HashMap because it's a data structure that uses the hash function to generate a mapping of keys and their corresponding values.

  • @skat4
    @skat4 2 года назад

    Been studying for my Software Engineering Interview, and these videos are so helpful!

  • @SuhasGowda4695
    @SuhasGowda4695 5 лет назад +3

    Thank you for the video. This covers almost everything for novice learners.

  • @richardpaynton8766
    @richardpaynton8766 2 года назад

    It was originally used in cryptology as method of assigning a key that is generated using a underlying algorithm and thus this key is then used to place the value into a data structure that can be retrieved. From this it was used because the second and most commonly used reason now is to reduce the search time complexity from O(n), O(n^2) and so on; to O(1). The hash value is the return value of the function that used to generate that hash value and is used as the index positioning of the element and hence used as a key

  • @supriyagupta922
    @supriyagupta922 3 года назад +1

    lovely dialogue delivering, excellent quality of video, concepts told in lay man terms. enjoyed and learnt. keep up the good work Alex. :)

  • @kzfingerprint
    @kzfingerprint 3 года назад +1

    Your videos are amazing! Thank you!!! You break down complex things so that I can better understand what's actually going on

  • @c7iogamer264
    @c7iogamer264 Год назад +1

    thank you for making coding tutorials that arent mind numbing

  • @yerffej370
    @yerffej370 2 года назад +1

    Bro why does RUclips keep recommending this. Fine! I’m here. I clicked it

  • @biggie2123
    @biggie2123 2 года назад

    I finally understand HashMaps. Thank you so much!

  • @xNytus
    @xNytus 4 года назад +1

    Really good tutorial dude. Finally someone who dont have a crappy mic and a indian accent :D
    pd : the editing was amazing too!

  • @mtm6613
    @mtm6613 2 года назад

    This was extremely helpful in helping me understand hashmaps. I wasn't understanding them in lectures but this definitely helped clear things up. Thanks!!!

  • @aishwarya6123
    @aishwarya6123 3 года назад

    I definitely recommend Alex's video! Easy to understand and follow!

  • @biscuitbutb4106
    @biscuitbutb4106 2 года назад

    These tutorials are awesome. You make java look so easy. Thanks for these easy tutorials!!

  • @razorlea1
    @razorlea1 2 года назад +1

    You do a great job! Simple and clear! Thank you.

  • @hannanhub1717
    @hannanhub1717 3 года назад

    thanks a lot i solved the follow program only bcoz of ur help.....FIRST ONE is the one with warning and error code as following......Note: HelloWorld.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details..........SECOND ONE is correct one...
    FIRST CODE WITH WARNING
    import java.util.*;
    public class HelloWorld {
    public static void main(String[] args) {
    HashMap map = new HashMap();/"line with warning"/
    map.put("Father", "Rob");
    map.put("Mother", "Kirsten");
    System.out.println(map.toString());
    }
    }
    SECOND CODE WITHOUT WARNING(thanks to you)
    import java.util.*;
    public class HelloWorld {
    public static void main(String[] args) {
    HashMap map = new HashMap();/"this time no warning"/
    map.put("Father", "Rob");
    map.put("Mother", "Kirsten");
    System.out.println(map.toString());
    }
    }

  • @nobel978
    @nobel978 5 лет назад +5

    Thank you so much, you're an awesome teacher.

  • @rolfchristensen9026
    @rolfchristensen9026 2 года назад

    As usual GREAT! Understanding the concept in 11 minutes :)

  • @MsVasisth
    @MsVasisth 4 года назад

    you don't give weird analogies like other youtube videos good work

  • @mugdhashrivastava
    @mugdhashrivastava 2 года назад

    love the teachers who make understanding fun. thank you sir

  • @khenparas3427
    @khenparas3427 Год назад

    Damn, his Java tutorials are totally understandable, thanks

  • @alexrogers7666
    @alexrogers7666 4 года назад

    Thanks for taking time to create content that helps me understand Java! Great job!

  • @veriidiite.wav1
    @veriidiite.wav1 3 года назад

    Legend

  • @johncsanchez9763
    @johncsanchez9763 4 года назад +2

    great tutorial. I understand it alot than my teacher. Thanyou! post more java tutorial

  • @abhi.marc90
    @abhi.marc90 3 года назад

    Wow thank you I was unable to understand hash maps until I stumbled upon your video. Thank you :)

  • @miledsahar2840
    @miledsahar2840 Год назад

    i don't usually write comments but your tutorials are so good and helpful.
    keep going !

  • @mzamomahaeng268
    @mzamomahaeng268 2 года назад

    You simplified it perfectly.. thank you sir

  • @soehtetaung3843
    @soehtetaung3843 Год назад

    that's just straight as an arrow. Awesome bro.

  • @victorwolff
    @victorwolff 4 года назад +12

    What type of keyboard is that? The sound is so satisfying XD

    • @skyeleake9943
      @skyeleake9943 2 года назад

      looks like a HHKB TypeS (torpre silent 45g switches)

  • @mflr121
    @mflr121 3 года назад +1

    Excellent video, I understood everything. Thank you!

  • @chenzhu445
    @chenzhu445 4 года назад

    Thank you Alex!! it's always fun and helpful watching your videos :) keep it up!

  • @PratyushMishra7
    @PratyushMishra7 4 года назад +1

    instead of typing system.out.println()
    use sout followed by ctrl+space or cmd+space

  • @horrypottur5854
    @horrypottur5854 4 года назад

    Extremly good explained!
    Way better then my proffesor! Sure its not advanced, but i at least undertood the basicis of HashMap.
    Thank you.

  • @aalokitchhabra9031
    @aalokitchhabra9031 4 года назад

    Alex you connect really well with your audience. Also about such subjects, I always used to think that i wont understand.. But after watching my first video, the perception has been changed. Please continue making contents. All the best to you. :)

    • @richardpaynton8766
      @richardpaynton8766 2 года назад

      You sound gay do you want to get on your knees for him

  • @arcane5837
    @arcane5837 3 года назад

    Helped out at lot! Very concise!

  • @missakhaladjian
    @missakhaladjian 4 года назад

    Thank you for these easy-to-understand tutorials, subscribed now!!

  • @Jigmet8
    @Jigmet8 4 года назад +1

    Hey Alex you're amazing I really love the way you teach...Stay happy 😉

  • @EypsSkWeEm
    @EypsSkWeEm 4 года назад

    UNDERSTANDABLE !!! Very good video ! Your explanation is clear and simple ! Good job ! I like it.

  • @KD_Panwar
    @KD_Panwar 2 года назад

    pls make a full session on java , your style is best .

  • @gary7135
    @gary7135 3 года назад

    Gosh I wish I could watch ur vid earlier! I just love the way you teach, clear and understandable. PLZ UPLOAD MORE! LUV YA ♥

  • @cacmang42
    @cacmang42 4 года назад +1

    you're a great teacher, keep going 💪

  • @basithtafadher8743
    @basithtafadher8743 3 года назад

    Teaching method really awesome. Wish your good health.

  • @heksqer1022
    @heksqer1022 5 лет назад +1

    Your videos are very easy to follow !

  • @gavidhariwal6307
    @gavidhariwal6307 3 года назад

    You're awesome dude! Very nice and concise explanations!

  • @psalkin
    @psalkin 2 года назад

    Best hashmap tutorial ever!

  • @SS-ug1qy
    @SS-ug1qy 4 года назад

    My favorite java tutor. if I am not mistaking if u want order you can use TreeMap

  • @lainenainen
    @lainenainen Год назад

    This was really helpful. Thank you so much!

  • @wattsofnoise
    @wattsofnoise 3 года назад

    Thank you for making this. It was extremely helpful!

  • @user-ts8dd7zc1n
    @user-ts8dd7zc1n Год назад

    your explanations are the best! thank you so much!

  • @anugoudvoddepally348
    @anugoudvoddepally348 2 года назад

    really ur explaination was good, after watching video i got clear idea about hash map thank you.

  • @ritikaarya1904
    @ritikaarya1904 3 года назад

    So simple explanation. Thanks!

  • @johnvishwas9117
    @johnvishwas9117 3 года назад

    You're the best coding tutor!

  • @FlameHashiraOG
    @FlameHashiraOG 2 года назад

    Thanks a bunch for the tutorials man, appreciate it

  • @Danni-8890
    @Danni-8890 3 года назад

    You definitely helped me out! Thanks

  • @sehse100
    @sehse100 3 года назад

    Wow!
    You made it easy for me!
    Thank you so much! ❤️❤️

  • @usertyfoon
    @usertyfoon Год назад

    That was great! Many thanks, bro!

  • @antoalex5732
    @antoalex5732 4 года назад

    Ivbeen stressing out over this for days cuz of my final. Learned it conpletely under 12 min just now. Just need some practice and the final is gonna be ez. thanks bud!

  • @kakashisenpai99
    @kakashisenpai99 2 года назад

    This Channel is underrated

  • @bafers1
    @bafers1 3 года назад

    Really like your videos, thanks for putting them up!
    Quick question though.... why do you not use your Mac keyboard :) ?

  • @geromemanicia3809
    @geromemanicia3809 4 года назад

    This was most helpful. I also want one of your keyboards but for now I'm gonna stay with my measly CTRL from drop.

  • @eesahash3163
    @eesahash3163 4 года назад +1

    That keyboard giving me the tingles XD

  • @fabianmaisch2423
    @fabianmaisch2423 3 года назад

    Very nice man! Helped me a lot👍🏼

  • @Roastmaster704
    @Roastmaster704 3 года назад

    Can u show a demo of string , vector hashmap ?

  • @nyxielia
    @nyxielia 4 года назад +1

    Thank you so much!! Finally a good explanation! Can you please make more videos on Data Structures :-)

  • @ljka
    @ljka 3 года назад

    Just like any other concepts, we learn basic of Java and integrate those knowledges to better understand more complex concepts. HashMap is named as it is because it possesses properties of Map and uses hashing logic in organizing and structuring data. Data Structure ✌🏼
    Cool vid