簡體   English   中英

如何將項目添加到鏈接列表的末尾?

[英]How can I add an item to the end the a Linked List?

我正在為我的數據結構類開發一個項目,該項目要求我編寫一個類來實現一個整數鏈表。

  • 為節點使用內部類。
  • 包括以下方法。
  • 編寫一個測試器,使您能夠以任何順序使用您想要的任何數據測試所有方法。

我必須創建一個名為“public void addToBack(int item)”的方法。 這個方法是為了“將一個項目添加到列表的末尾”我在下面有這個方法的代碼。 當我執行此方法時,我的列表變為空。 有人知道我做錯了什么以及如何解決嗎?


import java.util.Random;
import java.util.Scanner;

public class LinkedListOfInts {
    Node head;
    Node tail;

    private class Node {
        int value;
        Node nextNode;

        public Node(int value, Node nextNode) {
            this.value = value;
            this.nextNode = nextNode;
        }

    }

    public LinkedListOfInts(LinkedListOfInts other) {
        Node tail = null;
        for (Node n = other.head; n != null; n = n.nextNode) {
            if (tail == null)
                this.head = tail = new Node(n.value, null);
            else {
                tail.nextNode = new Node(n.value, null);
                tail = tail.nextNode;
            }
        }
    }

    public LinkedListOfInts(int[] other) {
        Node[] nodes = new Node[other.length];
        for (int index = 0; index < other.length; index++) {
            nodes[index] = new Node(other[index], null);
            if (index > 0) {
                nodes[index - 1].nextNode = nodes[index];
            }
        }

        head = nodes[0];
    }

    public LinkedListOfInts(int N, int low, int high) {
        Random random = new Random();
        for (int i = 0; i < N; i++)
            this.addToFront(random.nextInt(high - low) + low);
    }

    public void addToFront(int x) {
        head = new Node(x, head);
    }

    public void addToBack(int x) {
        if (head == null) {
            head = new Node(x, head);
            return;
        }
        tail = head;
        while (tail.nextNode != null) {
            tail = tail.nextNode;
        }
        tail.nextNode = new Node(x, tail);
    }

    public String toString() {
        String result = "";
        for (Node ptr = head; ptr != null; ptr = ptr.nextNode) {
            if (!result.isEmpty()) {
                result += ", ";
            }
            result += ptr.value;
        }
        return "[" + result + "]";
    }

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        LinkedListOfInts list = new LinkedListOfInts(10, 1, 20);
        boolean done = false;
        while (!done) {
            System.out.println("1. Add to Back");
            System.out.println("2. toString");
            switch (input.nextInt()) {
            case 1:
                System.out.println("Add an Item to the Back of a List.");
                list.addToBack(input.nextInt());
                break;
            case 2:
                System.out.println("toString");
                System.out.println(list.toString());
                break;

            }
        }
    }
}

添加到tail ,nextNode 應指向 null

tail.nextNode = new Node(x, null);

目前你有一個無限循環

暫無
暫無

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

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