Merge two sorted linked lists | gfg potd | 20-01-25 | GFG Problem of the day

Поділитися
Вставка
  • Опубліковано 22 січ 2025

КОМЕНТАРІ • 6

  • @mohammadaftabansari6882
    @mohammadaftabansari6882 3 дні тому

    Thanks for the straightforward explanation videos.

  • @CodeGenius316
    @CodeGenius316  3 дні тому +2

    Subscribe

    • @anoopkumarchaudhari6215
      @anoopkumarchaudhari6215 3 дні тому

      class Solution {
      public:
      Node* sortedMerge(Node* head1, Node* head2) {
      // code here
      Node* dummy = new Node(-1);
      Node* curr = dummy;
      while(head1!=NULL && head2!=NULL){
      if(head1->datadata){
      curr->next=head1;
      curr = head1;
      head1= head1->next;
      }
      else{
      curr->next=head2;
      curr = head2;
      head2= head2->next;
      }
      }
      if(head1!=NULL){
      curr->next = head1;
      }
      else
      curr->next=head2;
      return dummy->next;
      }
      };

  • @saswatrath4646
    @saswatrath4646 3 дні тому

    Merge sort pehle se kiya tha ye wala mera ho gaya aj phir bhi apka video dekh leta hu concept revise karne k liye