L23. Merge two sorted Linked Lists

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

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

  • @shubhambhatt2704
    @shubhambhatt2704 11 หลายเดือนก่อน +144

    Bro woke up and dropped the whole playlist

  • @ashwaniagrawal27
    @ashwaniagrawal27 9 หลายเดือนก่อน +14

    Definittely this is one of the best playlist on linked list in youtube.

  • @SaiSumanthKovuru
    @SaiSumanthKovuru 11 หลายเดือนก่อน +9

    best series i have ever seen especially the dry run thank u so much for an exceptional series

  • @neerkhandor5007
    @neerkhandor5007 11 หลายเดือนก่อน +5

    Byfar the best linked list series
    Thank you very much Raj Bhaiya

  • @393ShivamRajput
    @393ShivamRajput 10 หลายเดือนก่อน +17

    Great video, -->
    This video is not updated in the SDE sheet and in the Article as well.

  • @Mel-up7un
    @Mel-up7un 18 วันที่ผ่านมา +1

    dude you're better than that neetcode guy thank youuuuuuuuu

  • @robot3.077
    @robot3.077 10 หลายเดือนก่อน +1

    Bhaiya ,I can definitely say, you are god of DSA❤❤

  • @jnayehsirine6222
    @jnayehsirine6222 8 หลายเดือนก่อน +1

    we missed youuu here ! KEEP UP THE GREAT WORK YOU'RE DOIN MAN

  • @sohamsonwane1534
    @sohamsonwane1534 10 หลายเดือนก่อน +4

    meri tarf se ik papii supper good explanation

    • @OrderEmperor
      @OrderEmperor 9 หลายเดือนก่อน +4

      🏳️‍🌈

  • @amarpalji
    @amarpalji 9 หลายเดือนก่อน +5

    Thanks for clean code. sudo code have minor issue , please correct it . if ( t1 -> data < t2 -> data ) You missed equal elements . it should be if ( t1 -> data data )

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

      yes. I wondered the same. I came here from leetcode. there some values in the two sorted lists which are same. but what an explanation. I know only basics of linked lists. I was able to undersand well enough

    • @ujjwalsingh6889
      @ujjwalsingh6889 7 หลายเดือนก่อน +2

      There is no need for this Equal to condition bcz it already handled by else part
      But it is good to think about this condition👍👍

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

      @@ujjwalsingh6889 yes. I realized it later. when I did a dry run. Thanks for replying ujjwal

    • @rahulmandal4007
      @rahulmandal4007 5 หลายเดือนก่อน +1

      @@anirudhv0062 You need to improve your DSA These are basics

  • @itsd2388
    @itsd2388 11 หลายเดือนก่อน +9

    Bhaiya when can we expect stack queue playlist

  • @hashcodez757
    @hashcodez757 4 หลายเดือนก่อน +1

    Epic bhaiya!!

  • @rajatraj4297
    @rajatraj4297 5 หลายเดือนก่อน +6

    why this problem is not in the A2Z sheet?

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

    Very good explanation. 😊😊

  • @Bhawna-ir1gr
    @Bhawna-ir1gr 11 หลายเดือนก่อน +1

    amazing explanation ✨✨

  • @ManojKumar-do1rh
    @ManojKumar-do1rh 8 หลายเดือนก่อน

    Thanks ... nice explaination

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

    Loved it, bro!

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

    Welcome Back sir❤🎉

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

    class Solution {
    public ListNode mergeTwoShortedLists(ListNode l1,ListNode l2){
    ListNode ans=new ListNode(-1);
    ListNode temp=ans;
    while(l1!=null&&l2!=null){
    if(l1.val

  • @RAHULSINGH-cd6gl
    @RAHULSINGH-cd6gl 10 หลายเดือนก่อน

    On which topic you will be making your next playlist??

  • @d.praful
    @d.praful 5 หลายเดือนก่อน

    Nice explanation ❤

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

    Happy New Year 🎉

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

    Best bhai Thank you

  • @ArpanChakraborty-do6yz
    @ArpanChakraborty-do6yz 8 หลายเดือนก่อน

    Awesome 😎 17:36

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

    UNDERSTOOD;

  • @justsomeguywithoutamustach9978
    @justsomeguywithoutamustach9978 5 หลายเดือนก่อน +1

    To be exact, time complexity would be O(min(n1 + n2)).

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

    Understood✅🔥🔥

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

    Thanks

  • @NARUTOUZUMAKI-bk4nx
    @NARUTOUZUMAKI-bk4nx 10 หลายเดือนก่อน

    Understoood

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

    Understood

  • @VibhaJamadagni-hz6ck
    @VibhaJamadagni-hz6ck 5 หลายเดือนก่อน

    understood

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

    Thanks Striver!!1

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

    letsss fuckin gooooooo did both the approaches by only just getting one hint and last handling of edge case where i is not null where i tell temp ki tera next is i and vice versa yaaay

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

    Nyc

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

    In which lec you've explained the concept of dummy nodee?

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

    understood :)

  • @RituSingh-ne1mk
    @RituSingh-ne1mk 11 หลายเดือนก่อน

    Understood!

  • @YashGaneriwal-je6rh
    @YashGaneriwal-je6rh 3 หลายเดือนก่อน

    done and dusted

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

    I couldn't find this question in the a2z playlist.

  • @atulwadhwa192
    @atulwadhwa192 8 หลายเดือนก่อน +1

    shouldn't time complexity be min(n1,n2) coz this is where while stops and then it's just one extra link that we've to do?

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

      if the smaller values were in the n2 then in this case we will traverse till the end of n2. so min(n1,n2) will not work.

    • @Mel-up7un
      @Mel-up7un 18 วันที่ผ่านมา +1

      But we have to consider the worst case in which we traverse both the linked lists up to the last node

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

    Can't we use dummy node to make it as a copy of the lowest head value of either of the lists (which acts as the head of the new merged list) , and repeat the same process . Will the solution be different ?

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

    Undertsood

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

    What if I use a multiset instead of an array in brute force approach??

  • @No-yp1uv
    @No-yp1uv 2 หลายเดือนก่อน

    is this a dynamic programming problem?

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

    I'm confused how the space complexity is O(1)? We are creating a dummy node which extends to hold the nodes of both linked list 1 and linked list 2. Don't the space complexity be O(n1+n2) where n1 are number of nodes in linked list 1 and n2 are number of nodes in linked list 2.

    • @gulugulu-pw2ds
      @gulugulu-pw2ds 7 หลายเดือนก่อน

      ACTUALLY ITS LIKE VARIABLE DECLARATION .

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

      we are not creating a new node we are just declaring it like a temp node

    • @karthikeyan.s2565
      @karthikeyan.s2565 3 หลายเดือนก่อน

      ​@@aneeketvispute5063bro
      If we change temp.next = t2 then how the next node of t1 is not lost
      Since we're changing the link

  • @atulwadhwa192
    @atulwadhwa192 9 หลายเดือนก่อน +1

    8:15 Can anyone tell in which video dummy node concrpt is explained by him😅

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

    God or what

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

    UnderStood

  • @priyarajtripathi9952
    @priyarajtripathi9952 12 วันที่ผ่านมา

    hey folks, does anyone know what tool he is using to write and draw?

  • @AkashKumarTiwary-u4b
    @AkashKumarTiwary-u4b 6 หลายเดือนก่อน

    god

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

    Done and dusted😅

  • @aayushgakhar3525
    @aayushgakhar3525 6 หลายเดือนก่อน +1

    free(dummy node):

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

    There's a little mistake at the end for handling remaining nodes after either one list has reached null, there should be a another while loop to handle those cases. Also there isn't a java code to the above problem kindly provide one

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

      No need for while loop , see the video 11:40

    • @md.ualiurrahmanrahat2400
      @md.ualiurrahmanrahat2400 9 หลายเดือนก่อน

      No,we don't need the while loop here. As we are using the exiting nodes itself,not creating new ones. Suppose n1 is null, so n2 is left. we pointed temp->next as n2. so, from here, link is maintained up to n2 becomes null. Hope you got this.

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

      Wait what 😂 he did solved that with if else. Watch it completely before commenting.

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

    us

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

    where the hell is the dummy node concept been spending hours to find but couldn't find it Someone plz pin it

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

    Understood!

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

    Understood

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

    Understood!