L23. Merge two sorted Linked Lists

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

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

  • @shubhambhatt2704
    @shubhambhatt2704 ปีที่แล้ว +149

    Bro woke up and dropped the whole playlist

  • @ashwaniagrawal27
    @ashwaniagrawal27 10 หลายเดือนก่อน +15

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

  • @SaiSumanthKovuru
    @SaiSumanthKovuru ปีที่แล้ว +10

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

  • @braj_marg
    @braj_marg 10 วันที่ผ่านมา

    Striver made the solution as cake walk... best teacher !!

  • @neerkhandor5007
    @neerkhandor5007 ปีที่แล้ว +6

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

  • @393ShivamRajput
    @393ShivamRajput ปีที่แล้ว +21

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

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

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

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

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

  • @Mel-up7un
    @Mel-up7un หลายเดือนก่อน +1

    dude you're better than that neetcode guy thank youuuuuuuuu

  • @amarpalji
    @amarpalji 11 หลายเดือนก่อน +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 9 หลายเดือนก่อน

      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 8 หลายเดือนก่อน +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 8 หลายเดือนก่อน

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

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

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

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

    why this problem is not in the A2Z sheet?

  • @itsd2388
    @itsd2388 ปีที่แล้ว +9

    Bhaiya when can we expect stack queue playlist

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

    Lecture successfully completed on 30/11/2024 🔥🔥

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

    meri tarf se ik papii supper good explanation

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

      🏳️‍🌈

  • @עומרברוך-ת3ו
    @עומרברוך-ת3ו 14 วันที่ผ่านมา

    6:33 - good soultion

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

    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

  • @Bhawna-ir1gr
    @Bhawna-ir1gr ปีที่แล้ว +1

    amazing explanation ✨✨

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

    Very good explanation. 😊😊

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

    Epic bhaiya!!

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

    Loved it, bro!

  • @aakashbhandari9761
    @aakashbhandari9761 ปีที่แล้ว

    Welcome Back sir❤🎉

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

    Thanks ... nice explaination

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

    Awesome 😎 17:36

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

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

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

    Nice explanation ❤

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

    Understood✅🔥🔥

  • @atulwadhwa192
    @atulwadhwa192 10 หลายเดือนก่อน +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 8 หลายเดือนก่อน

      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 หลายเดือนก่อน +1

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

  • @sujalsingh9365
    @sujalsingh9365 ปีที่แล้ว

    Happy New Year 🎉

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

    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 9 หลายเดือนก่อน

      ACTUALLY ITS LIKE VARIABLE DECLARATION .

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

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

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

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

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

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

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

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

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

    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 ?

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

    Best bhai Thank you

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

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

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

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

  • @dayashankarlakhotia4943
    @dayashankarlakhotia4943 ปีที่แล้ว

    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

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

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

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

    is this a dynamic programming problem?

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

    UNDERSTOOD;

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

    Thanks Striver!!1

  • @Bug-g5b
    @Bug-g5b 10 วันที่ผ่านมา

    ty

  • @om3478
    @om3478 4 วันที่ผ่านมา

    understood!!!

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

    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 11 หลายเดือนก่อน

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

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

      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 10 หลายเดือนก่อน

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

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

    Understoood

  • @subee128
    @subee128 ปีที่แล้ว

    Thanks

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

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

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

    Understood

  • @RituSingh-ne1mk
    @RituSingh-ne1mk ปีที่แล้ว

    Understood!

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

    Nyc

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

    understood

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

    Undertsood

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

    UnderStood

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

    understood :)

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

    done and dusted

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

    Done and dusted😅

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

    God or what

  • @anandpandey918
    @anandpandey918 3 วันที่ผ่านมา

    /**
    * Definition for singly-linked list.
    * public class ListNode {
    * int val;
    * ListNode next;
    * ListNode() {}
    * ListNode(int val) { this.val = val; }
    * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
    * }
    */
    //Method 1 (Using extra space)
    //Naive Implementation
    class Solution {
    public ListNode mergeTwoLists(ListNode head1, ListNode head2) {
    MySinglyLinkedList mergedSinglyLinkedList = new MySinglyLinkedList();
    ListNode currentNode1 = head1;
    ListNode currentNode2 = head2;
    while (currentNode1 != null && currentNode2 != null) {
    // Retrieve the values of the current nodes from both the singly linked lists
    int val1 = currentNode1.val;
    int val2 = currentNode2.val;
    // Append the smaller value to the merged singly linked list
    if (val1

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

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

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

    free(dummy node):

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

    god

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

    us

  • @himasreedadam7670
    @himasreedadam7670 24 วันที่ผ่านมา

    understood

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

    Understood!

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

    Understood

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

    Understood!

  • @sid1993ful
    @sid1993ful 4 วันที่ผ่านมา

    Understood