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 / 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 |
Can we create a null as a key for a map collection?
Which sorting technique is faster?
Why do we use dynamic arrays?
Differentiate between compilers and interpreters.
A list is ordered from smaller to largest when a sort is called. Which sort would take the longest time to execute?
What will happen if an array goes out of bounds?
How much time does it take to learn data structures?
Why do we need to use computers to help us sort lists?
Which sorting algorithm is the slowest?
How will inorder, preorder and postorder traversals print the elements of a tree?
What is the height of a binary tree?
Can a tree be empty?