Multimap In C++

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 54

  • @PoojaSingh-tw6ed
    @PoojaSingh-tw6ed 4 ปีที่แล้ว +16

    You can think of lower_bound() as the first value in the range greater than or equal to the value we need to find. While upper_bound() gives us the value strictly greater than the value we wish to find in the list. It is a binary search implementation and have many applications in solving problems.

  • @tahaalkhashmany5678
    @tahaalkhashmany5678 4 ปีที่แล้ว +5

    knowing stl is the jumb from c to c++. you do a great job explaining stl in this series. thanks!

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks man!!

  • @nitindubey3092
    @nitindubey3092 3 ปีที่แล้ว +1

    Great explanation. But I think there is a small correction when you say that pair range, range.first is first element while range.second should be iterator after last element and not last element.

  • @KaiBeatbox0803
    @KaiBeatbox0803 4 ปีที่แล้ว +1

    Man I really love your tutorial, I though stl is really hard until I saw your playlist. It really helps me to prepare for internship next year! Big love from Australia!

    • @ravisahu4658
      @ravisahu4658 4 ปีที่แล้ว +1

      I also found this channel yesterday and I love it . It's very helpful

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      Thanks dude..

  • @lawbindpandey402
    @lawbindpandey402 4 ปีที่แล้ว

    The way you explain is the one of the best way to explain ...thank you sir !!!😇😇😇

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      It's my pleasure!!

    • @educatorshub7860
      @educatorshub7860 4 ปีที่แล้ว

      th-cam.com/video/uGWCMPRDYIw/w-d-xo.html

  • @izzyv830
    @izzyv830 หลายเดือนก่อน

    im giving a comment for algorithm just cuz this helped me

  • @neuron8186
    @neuron8186 3 ปีที่แล้ว

    absolutely in love with this channel

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks..

  • @teetanrobotics5363
    @teetanrobotics5363 4 ปีที่แล้ว +3

    Line 33 was really cool.

    • @behindthescene4406
      @behindthescene4406 4 ปีที่แล้ว

      Teetan Robotics
      Hey there I'm not able to get line 33 can u kindly explain me this ?

    • @teetanrobotics5363
      @teetanrobotics5363 4 ปีที่แล้ว

      @@behindthescene4406 Without the auto keyword , writing the line would have been bery hard.
      NOT SURE Something like std::multimap Multimap ::range

    • @behindthescene4406
      @behindthescene4406 4 ปีที่แล้ว

      Teetan Robotics thanks 😃

  • @meghnasingh9941
    @meghnasingh9941 4 ปีที่แล้ว +1

    can you please explain more on iterators

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      Sure, this is left in the series.
      Thanks

  • @Mmegaballs
    @Mmegaballs 4 ปีที่แล้ว

    just did the multimap from a map without knowing multimap worked like that :)
    i did a map[object] = value1; and also value 2 etc
    its basically a map
    how i did it?
    1) custom object need operator< to be redefined (to place the object in the RBTree)
    2) List: public extend std::list with operator= redifined as push_back(something)
    well if i knew i could iterator so easy in that multimap with range i wouldnt bother myself making that "version of multimap"

    • @JetaJ1
      @JetaJ1 3 ปีที่แล้ว

      I think the main problem is if using a map with a vector you can have O(n) lookup time, but when using multimap you have guaranteed O(logn) lookup time

  • @bhupankgoswami5709
    @bhupankgoswami5709 5 ปีที่แล้ว +1

    Nice. Please make it on Multiset as well.

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว +2

      Sure dude!!

  • @adamrushford
    @adamrushford 4 หลายเดือนก่อน

    thank you so much!

    • @CppNuts
      @CppNuts  2 หลายเดือนก่อน +1

      Thanks !!

  • @rakeshtanwar3836
    @rakeshtanwar3836 5 ปีที่แล้ว +1

    Very very much thanks

  • @msbabjan2341
    @msbabjan2341 5 ปีที่แล้ว +1

    Hi,
    Can u suggest me any channel where i can learn Embedded c ,Linux and IPC?

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      No idea dude.

  • @ritwik121
    @ritwik121 3 ปีที่แล้ว

    how to insert elements in multimap mp; ??? if its possible can you tell how?

  • @0saptarshi
    @0saptarshi 4 ปีที่แล้ว

    where can we get all these codes? Can you put these in a github repo? It would be extremely handy.

  • @karthickkumar1380
    @karthickkumar1380 3 ปีที่แล้ว

    God You;

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks dude..

  • @christopherapps6177
    @christopherapps6177 5 ปีที่แล้ว +1

    Thank you

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      You are welcome..

  • @mohamedsallam8928
    @mohamedsallam8928 5 ปีที่แล้ว +1

    do you know how to create ,save or load this map into a txt file ?

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      Yes that should be very easy you just have to to write into text file and read from it, aur check out serialisation and deserialization using text file.

  • @sambitkar2330
    @sambitkar2330 4 ปีที่แล้ว +1

    Do u have Linkedin?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Yes..

    • @sambitkar2330
      @sambitkar2330 4 ปีที่แล้ว +1

      @@CppNuts can we connect??? What's the ID?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Link is given in about section of my channel.

    • @sambitkar2330
      @sambitkar2330 4 ปีที่แล้ว

      @@CppNuts ohh thanks bhai!!!

  • @Ronie19821905
    @Ronie19821905 4 ปีที่แล้ว

    why iterator can be moved it ++;
    is the operation it + = 2 impossible?

  • @mohammadhaseeb948
    @mohammadhaseeb948 4 ปีที่แล้ว +1

    If second pair of function equal_range returns the iterator pointing to last key value
    So how you write in for loop it!=range.second
    Will it print all the values of key 'a'

  • @ShrisalimathShri
    @ShrisalimathShri 3 ปีที่แล้ว

    Sir pls don't display sentence on video bcoz we could not see what operation or output is coming

  • @Kaivalyamani
    @Kaivalyamani 4 ปีที่แล้ว

    Whats your gpu

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      RTX 2070.

  • @SYALUS3
    @SYALUS3 5 ปีที่แล้ว +1

    👍

  • @237sameer1
    @237sameer1 4 ปีที่แล้ว

    find returns iterator and not pair..