摘要: function Node(coef,expon) { this.coef = coef; // 系数 this.expon = expon; // 指数 this.next = null; } List.attach = function(node) { let current = this.he 阅读全文
posted @ 2020-06-27 01:42 guogrant 阅读(412) 评论(0) 推荐(0) 编辑