Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polynomial Addition Using Linked Lists in cpp #2908

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

nishthaa-m
Copy link

Create a C++ program to Add two polynomials using a Linked List.
-> Each node in the linked list should represent a term in the polynomial, with fields for the coefficient and exponent.
-> The program should read two polynomials from the user, add them, and display the resulting polynomial.

This program efficiently represents and adds two polynomials using linked lists, combining terms with like exponents and displaying the result in a readable format. It demonstrates fundamental operations with linked lists in C++ and is a practical example of polynomial arithmetic using data structures.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant