【DataStructure】Another usage of List: Polynomial

2024-03-02 20:32

本文主要是介绍【DataStructure】Another usage of List: Polynomial,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Statements: This blog was written by me, but most of content  is quoted from book【Data Structure with Java Hubbard】 


【Description】

Apolynomialis a mathematical function of the form:

p(x) = a0xn+ a1xn–1+a2xn–2+ ˜˜˜+an–1x + an The greatest exponent, n, is called the degreeof the polynomial. For example, p(x) = 7x4– 2 is abpolynomial of degree 4. The simplest polynomials are constant polynomialssuch as p(x) = 6 (degree 0) and linear polynomialssuch as p(x) = 9x+ 6 (degree 1). The unique zero polynomial p(x) = 0 is defined to have degree –1. In this section we present a Polynomialclass whose instances represent mathematical polynomials and which supports the usual algebraic operations on polynomials.A polynomial can be regarded as a sum of distinct terms. A termis a mathematical function of the form t(x) = cxe, where cis any real number and eis any nonnegative integer. The number ciscalled the coefficient, and the number eis called the exponent.To define a class whose objects represent polynomials, we use a linked list of Termobjects.For example, the polynomial p(x) = 3x2–2x+ 5 could be represented as a list of three elements,where the first element represents the term 3x2, the second element represents the term – 2x, andthe third element represents the (constant) term 5.

【Implement】

package com.albertshao.ds.polynomial;//  Data Structures with Java, Second Edition
//  by John R. Hubbard
//  Copyright 2007 by McGraw-Hillimport java.util.*;public class Polynomial {private List<Term> list = new LinkedList<Term>();public static final Polynomial ZERO = new Polynomial();private Polynomial() {}public Polynomial(double coef, int exp) {if (coef != 0.0) {list.add(new Term(coef, exp));}}public Polynomial(double... a) {for (int i=0; i<a.length; i++) {if (a[i] != 0.0) {list.add(new Term(a[i], i));}}}public Polynomial(Polynomial p) {  // copy constructorfor (Term term : p.list) {this.list.add(new Term(term));}}public int degree() {if (list.isEmpty()) {return -1;} else {return list.get(list.size()-1).exp;}}public boolean isZero() {return list.isEmpty();}public Polynomial plus(Polynomial p) {if (this.isZero()) {return new Polynomial(p);}if (p.isZero()) {return new Polynomial(this);}Polynomial q = new Polynomial();ListIterator<Term> it = list.listIterator();ListIterator<Term> itp = p.list.listIterator();while (it.hasNext() && itp.hasNext()) {Term term = it.next();Term pTerm = itp.next();if (term.exp < pTerm.exp) {q.list.add(new Term(term));itp.previous();} else if (term.exp == pTerm.exp) {q.list.add(new Term(term.coef + pTerm.coef, term.exp));} else {  // (term.exp > pTerm.exp) q.list.add(new Term(pTerm));it.previous();}}while (it.hasNext()) {q.list.add(new Term(it.next()));}while (itp.hasNext()) {q.list.add(new Term(itp.next()));}return q;}public String toString() {if (this.isZero()) {return "0";}Iterator<Term> it = list.iterator();StringBuilder buf = new StringBuilder();boolean isFirstTerm = true;while (it.hasNext()) {Term term = it.next();double c = term.coef;int e = term.exp;if (isFirstTerm) {buf.append(String.format("%.2f", c));isFirstTerm = false;} else {if (term.coef < 0) {buf.append(String.format(" - %.2f", -c));} else {buf.append(String.format(" + %.2f", c));}}if (e == 1) {buf.append("x");} else if (e > 1) {buf.append("x^" + e);}}return buf.toString();}private class Term {private double coef;private int exp;public Term(double coef, int exp) {if (coef == 0.0 || exp < 0) {throw new IllegalArgumentException();}this.coef = coef;this.exp = exp;}public Term(Term that) {  // copy constructorthis(that.coef, that.exp);}}
}

//  Data Structures with Java, Second Edition
//  by John R. Hubbard
//  Copyright 2007 by McGraw-Hillpackage com.albertshao.ds.polynomial;public class TestPolynomial {public static void main(String[] args) {Polynomial p = new Polynomial(3, -8, 0, 0, 2, 1);Polynomial q = new Polynomial(0, 5, 6, 9);System.out.println("p: " + p);System.out.println("p.degree(): " + p.degree());System.out.println("q: " + q);System.out.println("q.degree(): " + q.degree());System.out.println("p.plus(q): " + p.plus(q));System.out.println("q.plus(p): " + q.plus(p));System.out.println("p.plus(q).degree(): " + p.plus(q).degree());Polynomial z = new Polynomial(0);System.out.println("z: " + z);System.out.println("z.degree(): " + z.degree());System.out.println("p.plus(z): " + p.plus(z));System.out.println("z.plus(p): " + z.plus(p));System.out.println("p: " + p);Polynomial t = new Polynomial(8.88, 44);System.out.println("t: " + t);System.out.println("t.degree(): " + t.degree());}
}

【Result】

p: 3.00 - 8.00x + 2.00x^4 + 1.00x^5
p.degree(): 5
q: 5.00x + 6.00x^2 + 9.00x^3
q.degree(): 3
p.plus(q): 3.00 - 3.00x + 6.00x^2 + 9.00x^3 + 2.00x^4 + 1.00x^5
q.plus(p): 3.00 - 3.00x + 6.00x^2 + 9.00x^3 + 2.00x^4 + 1.00x^5
p.plus(q).degree(): 5
z: 0
z.degree(): -1
p.plus(z): 3.00 - 8.00x + 2.00x^4 + 1.00x^5
z.plus(p): 3.00 - 8.00x + 2.00x^4 + 1.00x^5
p: 3.00 - 8.00x + 2.00x^4 + 1.00x^5
t: 8.88x^44
t.degree(): 44



这篇关于【DataStructure】Another usage of List: Polynomial的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/767335

相关文章

java streamfilter list 过滤的实现

《javastreamfilterlist过滤的实现》JavaStreamAPI中的filter方法是过滤List集合中元素的一个强大工具,可以轻松地根据自定义条件筛选出符合要求的元素,本文就来... 目录1. 创建一个示例List2. 使用Stream的filter方法进行过滤3. 自定义过滤条件1. 定

如何通过Golang的container/list实现LRU缓存算法

《如何通过Golang的container/list实现LRU缓存算法》文章介绍了Go语言中container/list包实现的双向链表,并探讨了如何使用链表实现LRU缓存,LRU缓存通过维护一个双向... 目录力扣:146. LRU 缓存主要结构 List 和 Element常用方法1. 初始化链表2.

python中列表list切分的实现

《python中列表list切分的实现》列表是Python中最常用的数据结构之一,经常需要对列表进行切分操作,本文主要介绍了python中列表list切分的实现,文中通过示例代码介绍的非常详细,对大家... 目录一、列表切片的基本用法1.1 基本切片操作1.2 切片的负索引1.3 切片的省略二、列表切分的高

java两个List的交集,并集方式

《java两个List的交集,并集方式》文章主要介绍了Java中两个List的交集和并集的处理方法,推荐使用Apache的CollectionUtils工具类,因为它简单且不会改变原有集合,同时,文章... 目录Java两个List的交集,并集方法一方法二方法三总结java两个List的交集,并集方法一

Java集合中的List超详细讲解

《Java集合中的List超详细讲解》本文详细介绍了Java集合框架中的List接口,包括其在集合中的位置、继承体系、常用操作和代码示例,以及不同实现类(如ArrayList、LinkedList和V... 目录一,List的继承体系二,List的常用操作及代码示例1,创建List实例2,增加元素3,访问元

C#比较两个List集合内容是否相同的几种方法

《C#比较两个List集合内容是否相同的几种方法》本文详细介绍了在C#中比较两个List集合内容是否相同的方法,包括非自定义类和自定义类的元素比较,对于非自定义类,可以使用SequenceEqual、... 目录 一、非自定义类的元素比较1. 使用 SequenceEqual 方法(顺序和内容都相等)2.

Java中List转Map的几种具体实现方式和特点

《Java中List转Map的几种具体实现方式和特点》:本文主要介绍几种常用的List转Map的方式,包括使用for循环遍历、Java8StreamAPI、ApacheCommonsCollect... 目录前言1、使用for循环遍历:2、Java8 Stream API:3、Apache Commons

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

Collection List Set Map的区别和联系

Collection List Set Map的区别和联系 这些都代表了Java中的集合,这里主要从其元素是否有序,是否可重复来进行区别记忆,以便恰当地使用,当然还存在同步方面的差异,见上一篇相关文章。 有序否 允许元素重复否 Collection 否 是 List 是 是 Set AbstractSet 否

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At