专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
用单链表来实现多项式的加减乘,除就不做了,代码如下 public class Polynomial { private Monomial first; // 首项 //添加单项式 public void append(Monomial monomial) { if (monomial == null) { // do nothing } else if (first == null) { first = monomial; } else { Monomial current = first; while (current != null) { // 如果指 [阅读全文] [PDF]
1 共1条 分1页