UCS 1312 Data Structures Lab Laboratory Exercise 3: Polynomial manipulation using linked list

$35.00

Download Details:

  • Name: Assignment-3-3l8alt.zip
  • Type: zip
  • Size: 12.32 KB

Category:

Description

5/5 - (1 vote)

Create two linked list for the following polynomial equations
1. 3×12 + 8×8
– 22×4
+3x -7
2. 7×14 -10×9
– 8×8 +6×5
-9x
Perform the following operations using a menu driven program
1. Create linked list for the polynomials
2. Polynomial addition by passing two polynomial lists as arguments and return
the resultant polynomial list
3. Polynomial multiplication by passing two polynomial lists as arguments and
return the resultant polynomial list
4. Display the given polynomials and the resultant polynomial.
Note:
3 files need to be maintained.
1. Structure and function definitions
2. Function prototypes
3. Application