Description: The main aim of this project is to implement one of the most important
applications of linked list such as polynomial operations such as addition, subtraction,
multiplication and derivation. To perform these operations each polynomial needs to represent in
one linked list and each node in the list contains three parts to store coefficient, exponent and
link to next term of polynomial respectively. There are four modules in in this project
polynomial Addition
polynomial subtraction
polynomial multiplication
polynomial derivation
Requirements: To implement this project student should have knowledge on
•
creating using linked lists
•
pointers, self-referential structures
•
polynomial operations