Add two numbers represented by linked lists

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

КОМЕНТАРІ • 80

  • @Official-tk3nc
    @Official-tk3nc 4 роки тому +64

    if you are watching this in lockdown believe me you are one of the rare species on the earth who is working hard to achieve something in life. Many students are wasting their time watching movies, playing pubg, watching netflix , etc, ALL THE BEST nitjstudenthere

  • @agraa
    @agraa 5 років тому +42

    While adding when you are creating new linked list, just add the new node in the begining not in the end, so in that case you dont need to reverse it again. btw this question was asked to me in amazon interview.

  • @spardha-yug
    @spardha-yug 2 роки тому

    khup chhan bhava.
    Ekdam sopya bhashet ani chhan explain kelas.

  • @ashermanangan
    @ashermanangan 5 років тому +3

    What a great explanation. Thanks for this one, I now have a glimpse on what I should do on this Machine Problem

  • @sanjayjoshi8807
    @sanjayjoshi8807 4 роки тому +9

    optimizations could be done like no need to calculate length and difference to add zeroes we can reduce that step

  • @brinderdhaliwal3570
    @brinderdhaliwal3570 7 років тому +3

    my friend, very good examples. You are really helping me for my interview preparation that is coming up.

  • @anirudhsharma8608
    @anirudhsharma8608 4 роки тому

    You are probably the best teacher on planet earth! Thank you so much for this !!!!!!

  • @faz_1337
    @faz_1337 4 роки тому

    Great video, you explained it slowly and clearly.

  • @letsexplorewith_jaggu98
    @letsexplorewith_jaggu98 4 роки тому +1

    Thank you so much sir : ) you are really helping us in a great way

  • @aryambham1006
    @aryambham1006 5 років тому +1

    Can't thank you enough for the detailed explanations

  • @19osnaldito
    @19osnaldito 7 років тому +2

    You just saved my life. Thanks. Excellent video!!!! #handsdown

  • @narayananrenganathan765
    @narayananrenganathan765 5 років тому

    @Vivekanand Khyade your videos are very helpful for us. Thanks a lot !!

  • @100_bindusai8
    @100_bindusai8 4 роки тому

    Great explanation sir🙂😊😊

  • @prnk139
    @prnk139 2 роки тому

    Good ! Great Way of explaination!

  • @saicharan8675
    @saicharan8675 6 років тому

    Sir beautifully done... Thank for the lecture

  • @ShreyaSingh-vr9qi
    @ShreyaSingh-vr9qi 4 роки тому +1

    Can we modify one of original linked list to store the current both list nodes sum in one of existing linked list. It will reduce space complexity ??

    • @yatinarora1252
      @yatinarora1252 4 роки тому +1

      I thought so as I will add the sum in linked list. and then done its reversed trversal...Actually I was able to do that but some sort of overflow was there in my algo

  • @anujjain1456
    @anujjain1456 4 роки тому

    sir plz also analyse time complexity of solution
    that's makes ur lectures unbeatable
    thanks sir for superb content

  • @Techjai000
    @Techjai000 3 роки тому

    you are amazing sir nice video

  • @smayengbam
    @smayengbam 6 років тому +1

    Thanks Vivek for another awesome video!

  • @RohitPal-sc3um
    @RohitPal-sc3um 4 роки тому

    Nice sir You are doing well

  • @samrat4141
    @samrat4141 Рік тому

    Super explanation

  • @SagarSharma-ej3ds
    @SagarSharma-ej3ds 4 роки тому +1

    How to subtract two linked list Sir ?
    If possible please give the git code.

  • @vincentmanlesis8698
    @vincentmanlesis8698 5 років тому

    What if you input two digit number. It is needed to separate it right? Example : 10 11 12 13

  • @trishulsherigar1961
    @trishulsherigar1961 4 роки тому

    This problem has a recursive solution right?

  • @Ashish.Shukla9
    @Ashish.Shukla9 5 років тому +2

    can't we do it without reversing???

  • @sauravbhagat4737
    @sauravbhagat4737 6 років тому +3

    sir, we can do same without finding length and inserting zero ? As we are reversing already, we will just put check if(p->next!=NULL) //then do this. btw very smothly explained.

  • @VivekKumar-zo7kr
    @VivekKumar-zo7kr 4 роки тому

    Can please anyone help me...
    I have one another method...
    Instead of naming a variable carry... We can increase the p->next data by 1... And for corner cases if p->next ==NULL
    then just add the last digits..
    Can we do so na?

  • @shibanidas1479
    @shibanidas1479 7 років тому

    sir, if i want to multiply two numbers from diff linked lists and store the output no in a different. how can i do it?? can u just show it?? thank you .

  • @harshalgarg1149
    @harshalgarg1149 4 роки тому

    Sir, your github link is not working.
    Please help.

  • @s.l5787
    @s.l5787 6 років тому +1

    This is a technical detail but the remainder between 8 divided by 10 is actually 8, not 0. So in the cases where the carry is 0, it just means the addition variable and the remainder variable will be equal.
    e.g 8%10 yields 8 .

  • @adityagupta-lw1nt
    @adityagupta-lw1nt 4 роки тому +2

    how to solve this question without reversing the linked list

  • @brinderdhaliwal3570
    @brinderdhaliwal3570 7 років тому +1

    also, this means that at the end..you are returning a linked list..correct?

  • @sharjeeltahir5583
    @sharjeeltahir5583 5 років тому +1

    Remainder of 8/10 is not zero, but 8. 10 goes into 8 zero times, hence the remainder is 8.

  • @ChipsAhoy2022
    @ChipsAhoy2022 6 років тому

    This is required to be done without reversing the lists. Otherwise the solution is trivial and is definitely not what the interviewer expects. Can you please explain how to do the same.

  • @mathewwade4679
    @mathewwade4679 4 роки тому

    Another approach:
    This will take a bit more space(2 extra strings) compared to what sir discussed but it will also save a lot of computations. But note that space complexity still remains O(N) in both approaches.
    So first create 2 empty strings - str1 & str2
    Traverse the first linked list. At each node append it to our string. Convert this string to an integer - firstNum
    Similarly traverse second linked list and get - secondNum
    Add both of them: result = firstNum + secondNum
    Convert result to a string now
    For each character in result string:
    add it to a new node at insert at the end of our new Linked List.
    Return the new Linked List.

  • @anilnkhsatriya9047
    @anilnkhsatriya9047 6 років тому

    i think its more efficient by using double linked list. anyway good explanation tqu.

  • @ASHISHSHARMA-eg6oi
    @ASHISHSHARMA-eg6oi 7 років тому

    nice sir...Come up with more problems like from codechef and hacker-rank .Thanks in advance:)

  • @kranthiraj667
    @kranthiraj667 4 роки тому

    In either case reminder can go into new node. 5%10 = 5 not 0

  • @swacharahman5084
    @swacharahman5084 4 роки тому

    Why Don't you provide the code link in the description..😐 please do it

  • @salonirathi1158
    @salonirathi1158 7 років тому +1

    Thank you Sir:)

  • @sayantaniguha8519
    @sayantaniguha8519 4 роки тому +1

    Plz make video for *Large number Arithmetic* using DLL.

  • @raushanraj227
    @raushanraj227 2 роки тому

    well explained

  • @soumyamothe2981
    @soumyamothe2981 6 років тому

    Sir I need infix and postfix program by using stack

    • @quadirnawaz67
      @quadirnawaz67 6 років тому

      Search it on "My code school data structure playlist" You'' find them.

  • @myaseen7419
    @myaseen7419 5 років тому

    great explanation sir. i want code please.

  • @gv6980
    @gv6980 7 років тому +1

    Your videos are awesome.
    Can I get code in C++?

  • @ghoshdipan
    @ghoshdipan 4 роки тому

    Sir please show the full workinh of code also then it would be of much help.

  • @chitraanandh6499
    @chitraanandh6499 7 років тому

    sir, can you please make an explanatory video for polynomial addition using linked list?

  • @smritikaushik7529
    @smritikaushik7529 4 роки тому

    Pls provide the complete code

  • @libalalolaq9951
    @libalalolaq9951 7 років тому

    how to solver this question whihout reversing?

  • @ashiqhussainkumar1391
    @ashiqhussainkumar1391 3 роки тому

    I've a simple approach :
    Adding K lists in general.
    1.Reverse list 1, list 2,....list k;//as many lists u want to add.
    2. Initialize sum1=0,.... sumk=0;
    3.initialize a = 1;//used in addition.
    4. temp1 = head1;
    while (temp1) {
    sum1 += temp1.data *a;
    a=a*10;
    temp1 = temp1.next ;
    }
    5.Reinitialize a = 1;
    Repeat process for other K-1 lists.
    6.return sum1 + sum2+... sumk;

  • @lelehehe
    @lelehehe 4 роки тому

    it is mod, not divide by 10.

  • @deepak1725
    @deepak1725 6 років тому +1

    Whenever i hear .. Hello Frands, I complete it by.. "Chai pee lo".

  • @DhruvilPatel
    @DhruvilPatel 4 роки тому

    Your program took more time than expected. This is coming in GFG please HELP

    • @mohamedmusaraf675
      @mohamedmusaraf675 4 роки тому +2

      don't make zero values as a node
      Node* addTwoLists(Node* first1, Node* second1) {
      Node* res = NULL;
      Node *temp, *prev = NULL;
      int carry = 0, sum;
      while (first1 != NULL || second1 != NULL)
      {
      sum = carry + (first1? first1->data: 0) +
      (second1? second1->data: 0); //if the data is null then make the value as zero bro!!!1
      carry = (sum >= 10)? 1 : 0;
      sum = sum % 10;
      temp = newNode(sum);
      if(res == NULL)
      res = temp;
      else
      prev->next = temp;
      prev = temp;
      if (first1) first1 = first1->next;
      if (second1) second1 = second1->next;
      }
      if (carry > 0)
      temp->next = newNode(carry);
      return res;
      }
      i too solved today bro!

  • @bhuvanchandmaddi800
    @bhuvanchandmaddi800 7 років тому

    github.com/vivekanand44/codes-UA-cam-videos/blob/master/add_two_numbers_linked_list.cpp
    sir in your above code on git hub,there is some change(second if condition n1-n2) i think so because it gives wrong output when size of second list is greater than first and according to your code there is no need of appending zero infront of list after reversing..concept was super thank you sir..i have been following your lectures and your are the best

    • @nands4410
      @nands4410 6 років тому +1

      if (n1 > n2)
      {
      diff = n2 - n1;
      flag = 1;
      }
      He made a mistake here.
      diff = n1-n2; is correct

  • @vikashsharma5844
    @vikashsharma5844 2 роки тому

    Code wode yahi dala karo yrr...Ab github par jaao ID banao ...dhundo kaha hai kaun saa hai ...

  • @farhanjamal1376
    @farhanjamal1376 6 років тому

    do it on the computer.........what is this

  • @IamShivaniPandit
    @IamShivaniPandit 7 років тому +1

    Too slow. Speak fast and make short videos.

    • @deepikatadakhe
      @deepikatadakhe 7 років тому +2

      you can increase the speed of the video to your convenience

    • @GauravSharma-wb9se
      @GauravSharma-wb9se 7 років тому +3

      Everyone is not fast like you so its good for them

    • @bipros7
      @bipros7 6 років тому +2

      yeah man!!! I've increased the speed to 1.5x...still the speed seems like normal