how can i implement a polynomial class using the doubly linked list data structure such that each node of the list holds the coeffient and the exponent of the term ?
alikhandro 0 Newbie Poster
Recommended Answers
Jump to PostDefine a Node class with the required variables.
Jump to PostIf you are having problems with your code, post it and ask some specific questions.
Jump to PostHere are steps if the node is in the middle of the list (not head or tail).
1)Update the point-to next node of its previous node to its next node.
2)Update the point-to previous node of its next node to its previous node./* Assuming nodeX0 is …
All 11 Replies
NormR1 563 Posting Sage Team Colleague
alikhandro 0 Newbie Poster
NormR1 563 Posting Sage Team Colleague
alikhandro 0 Newbie Poster
NormR1 563 Posting Sage Team Colleague
alikhandro 0 Newbie Poster
NormR1 563 Posting Sage Team Colleague
alikhandro 0 Newbie Poster
Taywin 312 Posting Virtuoso
adesexy 0 Newbie Poster
NormR1 563 Posting Sage Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.