- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的乘法逻辑在某处不正确。看来我没有考虑到何时必须添加与两个多项式相乘的结果相同次数的项。
public Polynomial multiply(Polynomial p) {
if (p.poly == null || this.poly == null) {
Polynomial zero = new Polynomial();
zero.poly = new Node (0, 0, null);
return zero;
} else {
Polynomial retPol = new Polynomial();
retPol.poly = new Node(0, 0, null);
Node front = retPol.poly;
Node entered = p.poly;
Node thisPol = this.poly;
int high = Integer.MIN_VALUE;
int low = Integer.MAX_VALUE;
while (entered != null) {
thisPol = this.poly;
while (thisPol != null) {
if (thisPol.term.degree + entered.term.degree > high)
high = thisPol.term.degree + entered.term.degree;
if (thisPol.term.degree + entered.term.degree < low)
low = thisPol.term.degree + entered.term.degree;
thisPol = thisPol.next;
}
entered = entered.next;
}
entered = p.poly;
Node create = front;
for (int i = low; i <= high; i++) {
create.term.degree = i;
create.term.coeff = 0;
create.next = new Node (0, 0, null);
create = create.next;
}
entered = p.poly;
while (entered != null) {
thisPol = this.poly;
while (thisPol != null) {
int degree = entered.term.degree + thisPol.term.degree;
create = front;
while (create != null) {
if (create.term.degree == degree) {
create.term.coeff = entered.term.coeff * thisPol.term.coeff;
}
create = create.next;
}
thisPol = thisPol.next;
}
entered = entered.next;
}
create = front;
while (create != null) {
if (create.term.degree == high) {
create.next = null;
create = create.next;
}
else
create = create.next;
}
retPol.poly = front;
return retPol;
}
}
我应该得到的答案是:
32.0x^9 + 16.0x^8 + -16.0x^7 + -20.0x^6 + 52.0x^5 + 38.0x^4 + -6.0x^3 + -6.0x^2 + 9.0x + 27.0
但我实际上得到:
32.0x^9 + 16.0x^8 + -16.0x^7 + -8.0x^6 + 16.0x^5 + 24.0x^4 + 12.0x^3 + -6.0x^2 + -9.0x + 27.0
看来3级到6级的逻辑是错误的。我知道这是一个逻辑错误。我只是不知道如何解决。我还知道应该为那些不正确的度数添加哪些术语,但它看起来只是绕过了这一点,只显示一个。
任何提示将不胜感激。谢谢。
最佳答案
我认为你应该总结所有对,而不是在这里选择最后(或随机)对:
if (create.term.degree == degree) {
create.term.coeff += entered.term.coeff * thisPol.term.coeff;
}
[更新]经过我的更正后的代码非常适合我:
public class PolynomialTest {
public static void main(String[] args) {
// 4x^5 - 2x^3 + 2x + 3
Polynomial p1 = new Polynomial(new Node(4.0, 5, new Node(-2.0, 3, new Node(2.0, 1, new Node(3.0, 0, null)))));
// 8x^4 + 4x^3 - 3x + 9
Polynomial p2 = new Polynomial(new Node(8.0, 4, new Node(4.0, 3, new Node(-3.0, 1, new Node(9.0, 0, null)))));
Polynomial p3 = p1.multiply(p2);
System.out.println(p3.toString());
}
}
class Term {
int degree;
double coeff;
}
class Node {
Term term;
Node next;
public Node(double coeff, int degree, Node next) {
this.term = new Term();
this.term.degree = degree;
this.term.coeff = coeff;
this.next = next;
}
}
class Polynomial {
private Node poly;
public Polynomial() {}
public Polynomial(Node poly) {
this.poly = poly;
}
public Polynomial multiply(Polynomial p) {
if (p.poly == null || this.poly == null) {
Polynomial zero = new Polynomial();
zero.poly = new Node (0, 0, null);
return zero;
} else {
Polynomial retPol = new Polynomial();
retPol.poly = new Node(0, 0, null);
Node front = retPol.poly;
Node entered = p.poly;
Node thisPol = this.poly;
int high = Integer.MIN_VALUE;
int low = Integer.MAX_VALUE;
while (entered != null) {
thisPol = this.poly;
while (thisPol != null) {
if (thisPol.term.degree + entered.term.degree > high)
high = thisPol.term.degree + entered.term.degree;
if (thisPol.term.degree + entered.term.degree < low)
low = thisPol.term.degree + entered.term.degree;
thisPol = thisPol.next;
}
entered = entered.next;
}
entered = p.poly;
Node create = front;
for (int i = low; i <= high; i++) {
create.term.degree = i;
create.term.coeff = 0;
create.next = new Node (0, 0, null);
create = create.next;
}
entered = p.poly;
while (entered != null) {
thisPol = this.poly;
while (thisPol != null) {
int degree = entered.term.degree + thisPol.term.degree;
create = front;
while (create != null) {
if (create.term.degree == degree) {
create.term.coeff += entered.term.coeff * thisPol.term.coeff;
}
create = create.next;
}
thisPol = thisPol.next;
}
entered = entered.next;
}
create = front;
while (create != null) {
if (create.term.degree == high) {
create.next = null;
create = create.next;
}
else
create = create.next;
}
retPol.poly = front;
return retPol;
}
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
Node n = poly;
while (n != null) {
if (sb.length() > 0)
sb.append(" + ");
sb.append(n.term.coeff);
if (n.term.degree > 0)
sb.append("x");
if (n.term.degree > 1)
sb.append("^").append(n.term.degree);
n = n.next;
}
return sb.toString();
}
}
此代码打印的内容正是您所期望的:
27.0 + 9.0x + -6.0x^2 + -6.0x^3 + 38.0x^4 + 52.0x^5 + -20.0x^6 + -16.0x^7 + 16.0x^8 + 32.0x^9
关于java - 链表的多项式乘法度数数学不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32835409/
所以我想创建一个程序,当用户输入值 c 且 a = 1 时,打印出可因式分解的二次方程。程序应确定 b 的所有可能的整数值,以便三项式以 x^2 + bx + c 的形式打印出来 一个例子是,如果用户
我有自己定义的多项式类,它是系数列表的形式。 有点像 axˆ2 + bx + c is equals to [c, b, a] (for ax + b == [b, a] similarly, for
我必须制作一个对多项式执行运算的 GUI,但我不断收到无法摆脱的 NullPointerExceptions。在输出上它没有显示任何内容。我尝试调试我的程序,据我所知,我从键盘插入的多项式在某种程度上
numpy.lib.polynomial.polyval 允许您使用另一个多项式评估多项式: numpy.polyval(poly1d([1, 2, 3]), 2) Out[832]: 11 nump
如果我想计算多项式,如何在 C 中定义具有可变数量参数的函数?我的函数必须有这个参数:第一个参数:float x,第二个:int n,其余的 float (系数)。非常感谢! 最佳答案 用 varia
我正在尝试求多项式的不定积分,但是我的数学和编码都不是很好。我的代码可以编译,但我相信我的公式有误: Polynomial Polynomial :: indefiniteIntegral() co
我有 3 个数据集。 2 表示多项式本身(我们称它们为 x 和 y),1 表示函数值(它将是 z)。 多项式看起来像这样(假设两个维度的幂都是 3): z = a00 + a01*x + a02*x^
如何在 python 中计算最佳拟合线,然后将其绘制在 matplotlib 中的散点图上? 我使用普通最小二乘回归计算线性最佳拟合线如下: from sklearn import linear_mo
我正在尝试分解 bool 多项式以获得逻辑网络的最小形式。我的变量是 a1、a2、a3 ... 以及负对应项 na1、na2、na3 ... 如果需要一个函数 f = a1*a2*b2*nb1 + a
长话短说 如何使用系数数组构建表达式并将其转换为 Func ?有没有比表达式树更好的方法? 我有一个使用 Func formula 构造的不可变序列类型用于为序列 A 生成术语 An。我开始构建一个辅
我在我的 Mac OS Sierra 上运行 Spark 2.1.1(这应该有帮助)。我尝试在网上找到的测试数据集上拟合多项式逻辑回归,我在此处报告前几行(我不知道如何在此处附加文件): 1,0,24
我必须构建一个从类 lista(列表)继承的类多项式(polinom)。我必须从多项式类中加、减、乘、除 2 个对象。我有这段代码。我不明白为什么我的析构函数不工作。我还必须重载运算符:+、-、> 但
我有一个 Polynomial类,我正在尝试定义 operator++ ,递增前和递增后,以及尝试定义递减前和递减后,即 operator-- .这是我的代码片段: class Polynomial
我是编程新手(Python 是我的第一语言),但我喜欢设计算法。我目前正在研究方程组(整数),但找不到任何解决我的特定问题的引用。 让我解释一下。 我有一个等式(一个测试,如果你愿意的话): raw_
我正在尝试使用 scipy.stats (python) 中的 multinominal.pmf 函数。 当我在输入中所有概率都大于零的情况下使用此函数时,它工作正常。问题是当我想在其中一个概率为零时
我想用 0xA001 多项式计算字节数组的 CRC-16 校验和。但我真的不知道如何在 Java 中做到这一点,以及如何使用给定的多项式。它是某种特殊值(0xA001)吗?你能告诉我一个可以为我计算校
由于我的分类器在测试数据上产生了大约 99% 的准确率,我有点怀疑并想深入了解我的 NB 分类器最有用的特征,看看它正在学习什么样的特征。以下主题非常有用:How to get most inform
如 McFadden (1978)表明,如果多项 logit 模型中的备选方案数量大到无法计算,则通过对备选方案进行随机子集来获得一致估计仍然是可行的,因此每个个体的估计概率基于所选备选方案和 C其他
我现在有一些离散点,我使用 scipy.interpolate.splprep () 函数(B 样条插值)对其进行插值,以获得令人满意的平滑曲线。这是代码(借鉴另一个问题的答案)和我得到的结果。 im
我在 IPython notebook 中有一些多项式 x: import numpy as np x = np.polynomial.polynomial.Polynomial([1,2,3]) x
我是一名优秀的程序员,十分优秀!