簡體   English   中英

無法打印輸出用Java添加兩個數字

[英]Can't print out Add two numbers in Java

我無法從函數AddTwoNumber返回值main。 我已經檢查了函數中的結果,它是正確的。 但是,當我將值從AddTwoNumberListNode start ,它不會顯示任何內容。 我認為問題在這里發生:

ListNode dummy = new ListNode(0);
ListNode node = dummy;

但我不知道如何解決。

ListNode.cs:

class ListNode {
    public int data;       // data stored in this node
    public ListNode next;  // link to next node in the list

    // post: constructs a node with data 0 and null link
    public ListNode() {
        this(0, null);
    }

    // post: constructs a node with given data and null link
    public ListNode(int data) {
        this(data, null);
    }

    // post: constructs a node with given data and given link
    public ListNode(int data, ListNode next) {
        this.data = data;
        this.next = next;
    }
}

Main.cs:

public static void main(String[] args) {

    ListNode first = new ListNode(8,
                     new ListNode(9,
                     new ListNode(7   )));

    ListNode second = new ListNode(3,
                      new ListNode(5,
                      new ListNode(6  )));

    ListNode start = AddTwoNumber(first,second);

    while (start!=null) {
        System.out.println(start.next);
        start=start.next;
    }

}

public static ListNode AddTwoNumber(ListNode first, ListNode second) {
    ListNode dummy = new ListNode(0);
    ListNode node = dummy;
    int Digitsten = 0;
    int sum = 0;
    //Once fit first&second =null & Digitsten=0,the code can stop
    while (first != null || second != null || Digitsten != 0) {

        if (first != null && second != null) {
            sum += first.data + second.data + Digitsten;
        } else if (first!= null) {
            sum += first.data + Digitsten;
        } else if (second!= null) {
            sum += second.data + Digitsten;
        } else { 
            sum=Digitsten; `enter code here`
        }

        int DigitsOne = sum % 10;

        Digitsten = sum / 10;

        node = new ListNode(DigitsOne);
        node = node.next;

        if (first == null) {
            first = null;
        } else {
            first = first.next;
        }

        if (second == null) {
            second = null;
        } else {
            second = second.next;
        }
        sum = 0;

    }
    return dummy.next; //return the value to dummy ListNode
}

真正的問題在您的AddTwoNumber方法內部。 您不能使節點指向新節點,在移至下一個節點之前,應使其下一個指向新節點。

public static ListNode AddTwoNumber(ListNode first, ListNode second){

ListNode dummy = new ListNode(0);
ListNode node = dummy;
int Digitsten = 0;
int sum = 0;

while (first != null || second != null || Digitsten != 0) 
{
    if (first != null && second != null) 
    {
        sum += first.data + second.data + Digitsten;
    } 
    else if (first!= null) 
    {
        sum += first.data + Digitsten;
    } 
    else if (second!= null) 
    {
        sum += second.data + Digitsten;
    }
    else
    { 
        sum=Digitsten; `enter code here`
    }

    int DigitsOne = sum % 10;
    Digitsten = sum / 10;

    // LOOK HERE!!!
    node.next = new ListNode(DigitsOne);
    node = node.next;


    if (first == null) 
    {
        first = null;
    } 
    else
        first = first.next;

    if (second == null) 
    {
        second = null;
    } 
    else 
    {
        second = second.next;
    }
    sum=0;
}
return dummy.next;//return the value to dummy ListNode

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM