Application of Linked List (Multiplication of Two Polynomials)

  Рет қаралды 62,289

Neso Academy

Neso Academy

Күн бұрын

Data Structures: Application of Linked List (Multiplication of Two Polynomials)
Topics discussed:
1) C program to multiply the two polynomial using singly-linked lists.
Data Structures: bit.ly/3hjudFV
C Programming: goo.gl/7Eh2SS
Follow Neso Academy on Instagram: @nesoacademy(bit.ly/2XP63OE)
Follow me on Instagram: @jaspreetedu(bit.ly/2YX26E5)
Contribute: www.nesoacademy...
Memberships: bit.ly/2U7YSPI
Books: www.nesoacademy...
Website ► www.nesoacademy...
Forum ► forum.nesoacade...
Facebook ► goo.gl/Nt0PmB
Twitter ► / nesoacademy
Music:
Axol x Alex Skrindo - You [NCS Release]
#DataStructuresByNeso #DataStructures #LinkedList #LinkedListApplication

Пікірлер: 55
@roonyshekho8067
@roonyshekho8067 3 жыл бұрын
It was difficult like hell when I saw the code in geeksforgeeks, but now after this video everything is clear and easy to understand
@Liftsandeats
@Liftsandeats 3 жыл бұрын
Never knew linked list could be used in this way. Much creativity.
@anthonyedison2388
@anthonyedison2388 3 жыл бұрын
I realize it is quite randomly asking but does anyone know a good place to stream new movies online?
@eliankalel856
@eliankalel856 3 жыл бұрын
@Anthony Edison i would suggest FlixZone. You can find it on google =)
@emmettiker5387
@emmettiker5387 3 жыл бұрын
@Elian Kalel definitely, I have been using Flixzone for months myself :)
@anthonyedison2388
@anthonyedison2388 3 жыл бұрын
@Elian Kalel thanks, I went there and it seems to work :) I appreciate it !!
@eliankalel856
@eliankalel856 3 жыл бұрын
@Anthony Edison Happy to help :D
@itsme-xo4ku
@itsme-xo4ku 2 жыл бұрын
forever be thankful! many need this, but they are not reaching here !hope they will soon!
@ramakrishnareddy7691
@ramakrishnareddy7691 3 жыл бұрын
Happy to listen this voice again ❤️❤️❤️
@judgebot7353
@judgebot7353 3 жыл бұрын
Thanks A lot Neso Academy and Jaspreet Sir :)
@bhanupratap-qj4lp
@bhanupratap-qj4lp 3 жыл бұрын
Sir plz upload at least one video a day and your teaching way is superb ☺️
@3osman978
@3osman978 3 жыл бұрын
First from ALGERIA 🇩🇿❤️
@CodeCampus_1
@CodeCampus_1 3 жыл бұрын
You are teaching really awesome Sir pls upload this course ad early as possible
@DeepakKumar-jg1xk
@DeepakKumar-jg1xk 3 жыл бұрын
NEXT DIVISION
@dipeshsamrawat7957
@dipeshsamrawat7957 3 жыл бұрын
I love Neso Academy :)
@pujacvocalist
@pujacvocalist 2 жыл бұрын
Thank you so much Sir , now it's concept is clear to me after watching this video 😊
@shobhitagrawal4901
@shobhitagrawal4901 3 жыл бұрын
One more to the List .......❤️🤩
@ayushsoni5566
@ayushsoni5566 3 жыл бұрын
Please give us the idea till when this course will complete ?
@learninginstudentscafe7284
@learninginstudentscafe7284 3 жыл бұрын
Good job
@ravindrakanchu7504
@ravindrakanchu7504 2 жыл бұрын
Thank you very much sir and love you sir you are my real teacher
@manoharsinghrawat1859
@manoharsinghrawat1859 3 жыл бұрын
X^6 ,x^4,x^3 are appearing twice in result ... We can add thier coefficients and make it appear only once .. We can just modify our insert function little to achieve that ..
@AjayChauhan-ot2ss
@AjayChauhan-ot2ss 2 жыл бұрын
please upload all lecture of datastruture
@istutirajeev
@istutirajeev 3 жыл бұрын
Please upload for Queue soon....
@stormbreaker7007
@stormbreaker7007 3 жыл бұрын
Super teaching
@bollywoodstatus570
@bollywoodstatus570 9 ай бұрын
Thank you so much sir
@Barathl2025
@Barathl2025 11 ай бұрын
Nice🎉
@istutirajeev
@istutirajeev 3 жыл бұрын
Can you please tell @Neso Academy some approximate date until when you will be able to complete this series?
@MOHDSFAMILY
@MOHDSFAMILY 3 жыл бұрын
Sir can u please make a video of sparse matrix using single linked and to do addition, subtraction and multiplication on sparse matrix using single linked list
@nasr-eddinelljantafi8355
@nasr-eddinelljantafi8355 3 жыл бұрын
Please, im waiting the others data structure like trees, stack, queue and graph make them quickly sir
@rishabhverma5848
@rishabhverma5848 3 жыл бұрын
Just a question Is the linked list topic completed after this video?
@ArchismanBhaumik
@ArchismanBhaumik 3 жыл бұрын
When to use void and when to use Struct Node* while declaring a function ?
@taslimuddinahmed4041
@taslimuddinahmed4041 3 жыл бұрын
that depend on return type if we are return head which is of type (struct node*) then in function() return type should be struct node* else if we are not returning anything then we use void as in print() function we do not return anything.
@dipeshsamrawat7957
@dipeshsamrawat7957 3 жыл бұрын
It's all depends on us bro, both situations are created, no problem with that. Syntax must be correct.
@zainsharief1342
@zainsharief1342 3 жыл бұрын
@Neso Academy Great lecture! I was wondering how to add all the like terms and simplify the final answer in the case of polynomial multiplication. How do i proceed?
@taslimuddinahmed4041
@taslimuddinahmed4041 3 жыл бұрын
i think as the elements are arranged in descending we need to traverse the list and compare the exponents of two consecutive terms if they are found to be same then add their coefficients and put it in ptr1 and update the link while(ptr2 != NULL) if(ptr1->expo == ptr2->expo) ptr1->coeff =ptr1->coeff + ptr2->coeff; ptr1->link = ptr2->link; free(ptr2);
@taslimuddinahmed4041
@taslimuddinahmed4041 3 жыл бұрын
complete code bro: void exact(struct node *head3) { struct node *ptr1 = head3; struct node *ptr2 = head3->link; int c = 0; while(ptr2 != NULL) { if(ptr1->expo == ptr2->expo) { c = ptr1->coeff + ptr2->coeff; ptr1->coeff = c; ptr1->link = ptr2->link; free(ptr2); ptr1 = ptr1->link; ptr2 = ptr1->link; } else { ptr1 = ptr2; ptr2 = ptr1->link; } } printf("The Added Polynomial: "); print(head3); }
@samanuai6310
@samanuai6310 2 жыл бұрын
we have to sort the list first the answer in the video was sorted b him
@monicabattacharya6416
@monicabattacharya6416 3 жыл бұрын
Dear Neso Academy , Please reply 🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼. what is the difference between datastructures and advanced datastructures?
@anaraki_zahra
@anaraki_zahra 4 ай бұрын
Thank you very much for your funny pronunciation ❤❤🎉🎉😂😂
@ManSocial10
@ManSocial10 3 жыл бұрын
Make Tree data structure presentation
@ayushmansrivastav6898
@ayushmansrivastav6898 3 жыл бұрын
❤️❤️❤️❤️❤️❤️
@aahyoushhh
@aahyoushhh 2 жыл бұрын
sir plz upload the code
@jackshih6084
@jackshih6084 3 жыл бұрын
Update!!!
@CodeCampus_1
@CodeCampus_1 3 жыл бұрын
Sir pls upload videos on Data structure first You started making new course of C++ Sir pls first complete this series
@nesoacademy
@nesoacademy 3 жыл бұрын
C++ has nothing to do with Data Structures, and we're trying our best to complete every ongoing subject this year.
@CodeCampus_1
@CodeCampus_1 3 жыл бұрын
@@nesoacademysir you are working on too many series at a time Pls stop other series like c++ operating system For a while And pls upload this full series first
@CodeCampus_1
@CodeCampus_1 3 жыл бұрын
@@nesoacademy Dsa is very important And your way of explanation make it more easier So am requesting you to pls pls pls Upload this whole this in this months if possible Plss sir
@nesoacademy
@nesoacademy 3 жыл бұрын
Sorry, but why should we stop other subjects when different teachers are working on them? Teachers are different for C++ and Data Structures.
@CodeCampus_1
@CodeCampus_1 3 жыл бұрын
@@nesoacademy ohk ohkk fine I thought that you are alone working on all subjects My only intention is to get full courses as early as possible Is there is any paid course available for Dsa from neso academy?
Application of Linked List (Addition of Two Polynomials)
17:29
Neso Academy
Рет қаралды 230 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
8 patterns to solve 80% Leetcode problems
7:30
Sahil & Sarra
Рет қаралды 518 М.
Polynomial Multiplication using Linked List
11:34
CS KTU Lectures
Рет қаралды 12 М.
Linked List Implementation of Stacks (Part 1)
9:24
Neso Academy
Рет қаралды 254 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 973 М.
Merge two sorted Linked Lists to form a new Sorted Linked List
13:59
Vivekanand Khyade - Algorithm Every Day
Рет қаралды 174 М.
Application of Linked List (Polynomial Arithmetic) - Part 2
22:54
Neso Academy
Рет қаралды 107 М.
Introduction to Linked List
6:21
Neso Academy
Рет қаралды 1,7 МЛН
Fast Inverse Square Root - A Quake III Algorithm
20:08
Nemean
Рет қаралды 5 МЛН