how a polynomial such as 6x^6+4x^3-2x+10 can be represnted
by linked list?write an algorithm that reads such an polynomial
Answer Posted / poojithap2
the polynomial contained in the coefficiant&exponant of x
6.0 4.0 -2.0 10.0
....... .....
6 3 1 0
...... ..... ..... ......
---> ---> ------> --->
...... ..... ..... .......
alg:
if empty list
if polynomial=NULL
then
when('zero polynamial')
return
[traverse list]
reepeat while polynomial!=NULL
set result=derivative of polynomial
write result
set polynomial=next node of polynomial
end loop
return
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the scenarios in which an element can be inserted into the circular queue?
What are the 3 types of measurement?
How many types of arrays are there in visual basic?
What is list data structure?
Define the term “percolate up”?
Why linked list is required?
What does arraylist remove return?
Is bubble sort faster than selection sort?
Write the syntax in c to create a node in the singly linked list.
Explain multiply linked list in short.
Why is hashing used?
Which is faster hashmap or treemap?
Why is data structure?
What is data and data structure?
Is any implicit arguments are passed to a function when it is called?