(初学者Java)一元稀疏多项式计算器——Java版

一元稀疏多项式计算器——Java版

大二上学期结束了,数据结构老师让我们做一个一元稀疏计算器,网上的很多代码都是C语言的,我写了一个简单的Java版的,功能简陋,就是应付应付作业。

上代码

节点Node类

package internship;
//自定义的结点类
public class Node {
    public Node next;
    public float coefficient;
    public float index;
    public Node(float coefficient,float index){
        this.coefficient=coefficient;
        this.index=index;
    }
}

LinkList类

package internship;

import java.util.Scanner;

import static java.lang.System.out;

public class LinkList {
    private static Node headA;
    private static Node headB;
    private static Node headC;
    static LinkList linkList = new LinkList();

    public static void main(String[] args) {
        String Str;
        Scanner scanner = new Scanner(System.in);
        out.println("请输入第一个多项式,输入格式:系数(空格)指数 输入0 0结束");
        while (true) {
            Str = scanner.nextLine();
            String[] s1 = Str.split(" ");
            float a = Float.parseFloat(s1[0]);
            float b = Float.parseFloat(s1[1]);
            if (a == 0 && b == 0) {
                break;
            }
            linkList.addA(a, b);
        }
        out.println("请输入第二个多项式,输入格式:系数(空格)指数 输入0 0结束");
        while (true) {
            Str = scanner.nextLine();
            String[] s2 = Str.split(" ");
            float c = Float.parseFloat(s2[0]);
            float d = Float.parseFloat(s2[1]);
            if (c == 0 && d == 0) {
                break;
            }
            linkList.addB(c, d);
        }
        out.println("请选择运算方式");
        out.println("1. +");
        out.println("2. -");
        out.println("3. *");
        int choose = scanner.nextInt();
        switch (choose) {
            case 1:
                out.print("第一个多项式为:");
                linkList.show(headA);
                linkList.sort(headA);
                linkList.eliminate(headA);
                out.println();
                out.print("第二个多项式为:");
                linkList.show(headB);
                linkList.sort(headB);
                linkList.eliminate(headB);
                out.println();
                out.print("相加后多项式为:");
                linkList.addition();
                if (headA != null && headB != null)
                    linkList.show(headC);
                break;
            case 2:
                out.print("第一个多项式为:");
                linkList.show(headA);
                linkList.sort(headA);
                linkList.eliminate(headA);
                out.println();
                out.print("第二个多项式为:");
                linkList.show(headB);
                linkList.sort(headB);
                linkList.negative();
                linkList.eliminate(headB);
                out.println();
                out.print("相减后多项式为:");
                linkList.addition();
                if (headA != null && headB != null)
                    linkList.show(headC);
                break;
            case 3:
                out.print("第一个多项式为:");
                linkList.show(headA);
                linkList.sort(headA);
                linkList.eliminate(headA);
                out.println();
                out.print("第二个多项式为:");
                linkList.show(headB);
                linkList.sort(headB);
                linkList.eliminate(headB);
                out.println();
                out.print("相乘后多项式为:");
                linkList.multiplication();
                linkList.sort(headC);
                linkList.eliminate(headC);
                if (headA != null && headB != null)
                    linkList.show(headC);
                break;
        }
    }

    private void addA(float dataA, float dataa) {
        Node tNode = new Node(dataA, dataa);
        if (headA == null) {
            headA = tNode;
            return;
        }
        Node temp = headA;
        while (temp.next != null) {
            temp = temp.next;
        }
        temp.next = tNode;
    }

    private void addB(float dataB, float datab) {
        Node tNode = new Node(dataB, datab);
        if (headB == null) {
            headB = tNode;
            return;
        }
        Node temp = headB;
        while (temp.next != null) {
            temp = temp.next;
        }
        temp.next = tNode;
    }

    private void addC(float dataC, float datac) {
        Node tNode = new Node(dataC, datac);
        if (headC == null) {
            headC = tNode;
            return;
        }
        Node temp = headC;
        while (temp.next != null) {
            temp = temp.next;
        }
        temp.next = tNode;
    }

    private void show(Node head) {
        if (head == null) {
            out.print(0 + " ");
            return;
        }
        Node temp = head;
        if (temp.coefficient == 0) {
        } else {
            if (temp.index == 0) {
                out.print(temp.coefficient + " ");
            } else {
                if (temp.index == 1 && temp.coefficient != 1 && temp.coefficient != -1) {
                    out.print(temp.coefficient + "X" + " ");
                } else {
                    if (temp.coefficient == 1 && temp.index != 1) {
                        out.print("X^" + temp.index + " ");
                    } else {
                        if (temp.coefficient == -1 && temp.index != 1) {
                            out.print("-X^" + temp.index + " ");
                        } else {
                            if (temp.coefficient == 1 && temp.index == 1) {
                                out.print("X" + " ");
                            } else {
                                if (temp.coefficient == -1 && temp.index == 1) {
                                    out.print("-X" + " ");
                                } else {
                                    System.out.print(temp.coefficient + "X^" + temp.index + " ");
                                }
                            }
                        }
                    }
                }
            }
        }
        while (temp.next != null) {
            if (temp.next.coefficient == 0) {
            } else {
                if (temp.next.coefficient > 0) {
                    System.out.print("+");
                }
            }
            if (temp.next.coefficient == 0) {
            } else {
                if (temp.next.index == 0) {
                    out.print(temp.next.coefficient + " ");
                } else {
                    if (temp.next.index == 1 && temp.next.coefficient != 1 && temp.next.coefficient != -1) {
                        out.print(temp.next.coefficient + "X" + " ");
                    } else {
                        if (temp.next.coefficient == 1 && temp.next.index != 1) {
                            out.print("X^" + temp.next.index + " ");
                        } else {
                            if (temp.next.coefficient == -1 && temp.next.index != 1) {
                                out.print("-X^" + temp.next.index + " ");
                            } else {
                                if (temp.next.coefficient == 1 && temp.next.index == 1) {
                                    out.print("X" + " ");
                                } else {
                                    if (temp.next.coefficient == -1 && temp.next.index == 1) {
                                        out.print("-X" + " ");
                                    } else {
                                        System.out.print(temp.next.coefficient + "X^" + temp.next.index + " ");
                                    }
                                }
                            }
                        }
                    }
                }
            }
            temp = temp.next;
        }
    }

    private void eliminate(Node head) {
        Node temp = head;
        while (temp != null) {
            Node tNode = head;
            while (tNode.next != temp && tNode.next != null) {
                if (tNode.next.index == temp.index) {
                    temp.coefficient = tNode.next.coefficient + temp.coefficient;
                    tNode.next = tNode.next.next;
                } else {
                    tNode = tNode.next;
                }
            }
            temp = temp.next;
        }
    }

    private void sort(Node head) {
        Node temp = head;
        while (temp != null) {
            Node tNode = temp.next;
            while (tNode != null) {
                if (temp.index > tNode.index) {
                    float da = tNode.index;
                    float dA = tNode.coefficient;
                    tNode.index = temp.index;
                    tNode.coefficient = temp.coefficient;
                    temp.index = da;
                    temp.coefficient = dA;
                }
                tNode = tNode.next;
            }
            temp = temp.next;
        }
    }

    private void negative() {
        if (headB == null) return;
        Node temp = headB;
        temp.coefficient = 0 - temp.coefficient;
        while (temp.next != null) {
            temp.next.coefficient = 0 - temp.next.coefficient;
            temp = temp.next;
        }
    }
//加法以及减法运算的方法
    private void addition() {
        int i = 0, j = 0;
        Node tempA = headA;
        Node tempB = headB;
        if (headA != null && headB == null) {
            show(headA);
            return;
        }
        if (headB != null && headA == null) {
            show(headB);
            return;
        }
        while (tempA.next != null && tempB.next != null || tempA.next == null && tempB.next == null && i == 0 && j == 0 || i == 1 || j == 1 || tempA.next == null && tempB.next != null || tempA.next != null && tempB.next == null) {
            if (tempA.index == tempB.index && i == 0 && j == 0) {
                if (tempA.coefficient + tempB.coefficient == 0 && i == 0 && j == 0) {
                    if (tempA.next != null) tempA = tempA.next;
                    else i = 1;
                    if (tempB.next != null) tempB = tempB.next;
                    else j = 1;
                    if (i == 1 && j == 1) {
                        i = 2;
                        j = 2;
                    }
                } else {
                    float a = tempA.coefficient + tempB.coefficient;
                    linkList.addC(a, tempA.index);
                    if (tempA.next != null) tempA = tempA.next;
                    else i = 1;
                    if (tempB.next != null) tempB = tempB.next;
                    else j = 1;
                    if (i == 1 && j == 1) {
                        i = 2;
                        j = 2;
                    }
                }
            } else {
                if (i == 1) {
                    linkList.addC(tempB.coefficient, tempB.index);
                    while (tempB.next != null) {
                        if (tempB.next != null) tempB = tempB.next;
                        linkList.addC(tempB.coefficient, tempB.index);
                    }
                    i = 2;
                }
                if (j == 1) {
                    linkList.addC(tempA.coefficient, tempA.index);
                    while (tempA.next != null){
                        if (tempA.next != null) tempA = tempA.next;
                        linkList.addC(tempA.coefficient, tempA.index);
                    }
                    j = 2;
                } else {
                    if (tempA.index < tempB.index && i == 0 && j == 0) {
                        linkList.addC(tempA.coefficient, tempA.index);
                        if (tempA.next != null) tempA = tempA.next;
                        else i = 1;
                    }
                    if (tempA.index > tempB.index && i == 0 && j == 0) {
                        linkList.addC(tempB.coefficient, tempB.index);
                        if (tempB.next != null) tempB = tempB.next;
                        else j = 1;
                    }
                }
            }
        }
    }

    public void multiplication() {
        Node temp = headA;
        if (headA != null && headB == null) {
            out.print("0");
            return;
        }
        if (headB != null && headA == null) {
            out.print("0");
            return;
        }
        while (temp != null) {
            Node tNode = headB;
            while (tNode != null) {
                float a = temp.coefficient * tNode.coefficient;
                float b = temp.index + tNode.index;
                linkList.addC(a, b);
                tNode = tNode.next;
            }
            temp = temp.next;
        }
    }
}

笔者能力有限,如有问题,可在评论区提出,感谢斧正

  • 11
    点赞
  • 46
    收藏
    觉得还不错? 一键收藏
  • 9
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值