【发布时间】:2011-09-02 07:53:13
【问题描述】:
我正在阅读有关多项式的链表实现的信息。它表示,
Compare this representation with storing the same
polynomial using an array structure.
In the array we have to have keep a slot for each exponent
of x, thus if we have a polynomial of order 50 but containing
just 6 terms, then a large number of entries will be zero in
the array.
我想知道我们如何在数组中表示多项式?请指导我。
谢谢
【问题讨论】:
标签: arrays linked-list