0

我搜索了很多,发现了很多类似的答案,但对我的确切问题没有任何帮助。

我正在为我的双链表做一个推送方法,而头部的指针工作正常,尾部的下一个和前一个指针不起作用请帮忙。

public class MyStack<E> implements MyDeque {

    private Node<E> head;
    private Node<E> tail;
    private int size;

    public MyStack() {
        head = null;
        tail = null;
        size = 0;
    }
    public void push(Object element) {
        Node<E> newNode = new Node(element);
       if(size == 0) {
           Node temp = new Node(head);
           head = newNode;
           head.next = head;
           head.previous = head;
           tail = head;
           tail.next = head;
           tail.previous = temp;          

          }
       else {     

           newNode.previous = head;
           head = newNode;
           newNode.next = tail;
           (tail.next).previous = tail;


       }//else statement
       size++;
    }//push()


    public Object peek() {
        if (size==0) return null;
        else
            return head;
    }


    public Object pop() {

      size--;
      if(size == 0) 
          return null;
      else {

         Node temp = new Node(head.previous);
         head = head.previous;
         head.next = tail;
         head.previous = temp;

         return head;

      }//else

    }//pop()

    @Override
    public int size() {

        return size;
    }


     private class Node<E> {
        private E data;
        private Node<E> next;
        private Node<E> previous;

        public Node(E data) {
            this.data = data;
            this.next = null;
            this.previous = null;
        }
        public Node(E data, Node<E> next, Node<E> previous) {

            this.data = data;
            this.next = next;
            this.previous = previous;

        }//constructor

        public String toString() {
            return data+"";
        }

    }//class Node<E>
    public String toString() {

        return (head+" Head\n" + head.next  +" Head.Next\n" + head.previous+ " Head.previous\n"
                + tail+" Tail\n" + tail.next+" tail.next\n" + tail.previous+" tail.previous\n"); 

    }


}
4

2 回答 2

0

当堆栈为空时推送对象的情况看起来不正确。添加的第一个节点应分配给 head。然后尾部成为新节点的头部,这个新节点成为尾部节点的尾部,新节点本身成为尾部。

通常在堆栈的末尾(尾部)添加和删除元素。该代码并没有很清楚地说明您要对headtail成员做什么。如果您将它们命名为firstNodelastNode,您可能会更清楚。

于 2013-02-01T06:34:06.017 回答
0

我实际上可以看到这段代码的一些问题

public class MyStack<E> implements MyDeque {

private Node<E> head;
private Node<E> tail;
private int size;

public MyStack() {
    head = null;
    tail = null;
    size = 0;
}

这看起来不错

public void push(Object element) {
    Node<E> newNode = new Node(element);
   if(size == 0) {
       Node temp = new Node(head);
       head = newNode;
       head.next = head;
       head.previous = head;
       tail = head;
       tail.next = head;
       tail.previous = temp;          

      }
   else {     

       newNode.previous = head;
       head = newNode;
       newNode.next = tail;
       (tail.next).previous = tail;


   }//else statement
   size++;
}//push()

有点困惑为什么你要接受一个对象而不是你的通用 E。

你真的不需要这里的 temp 值,事实上,当你设置时,你看起来像是打破了以前的值tail.previous = temp

在您的 else 中,您没有正确设置 tail.previous。最后一行应该是tail.previous = head. 你也错过了head.next

所以清理了一下

public void push(E element) {
    Node newNode = new Node(E);
    if(size == 0) {
        head = newNode;
        head.next = head;
        head.previous = head;
        tail = head;
    } else {
        newNode.previous = head;
        head.next = newNode;
        newNode.next = tail;
        tail.previous = newNode;
        head = newNode;
    }
    size++;
}

在您的 pop 方法中,您可能希望在大小检查后移动您的大小减量,否则 1 元素堆栈在弹出时将返回 null。

编辑:使用单链表可能会更容易,或者至少不是循环双向链表。

最后添加可能是更传统的做事方式。

于 2013-02-01T06:35:29.247 回答