编程语言
首页 > 编程语言> > java-以固定时间在单链接列表的末尾添加

java-以固定时间在单链接列表的末尾添加

作者:互联网

我正在尝试编写一种在恒定时间内添加到单链表末尾的方法.我不知道如何在恒定时间内分配一个指针到列表中的最后一个节点.此方法在0(n)中运行:

public void insertEnd(Object obj) {
if (head == null) {
  head = new SListNode(obj);
} else {
  SListNode node = head;
  while (node.next != null) {
    node = node.next;
  }
  node.next = new SListNode(obj);
}
size++;
}

这是我的新方法的开始:

public void addLast(SListNode obj){
  //if the list is empty, the new element is head and tail
  if(tail == null){  
      obj.next = null;
      head = tail = obj;
  }else{   -----> here I'm confused 

  }
}

这是我的SList类:

public class SList {
   private SListNode head;
   private SListNode tail;
   private int size;

   public SList() {
   size = 0;
   head = null;
   tail = null;

}

解决方法:

我认为这应该涵盖它:(应该放在其他地方)

tail.next = obj; // have (the current tail).next point to the new node
tail = obj; // assign 'tail' to point to the new node
obj.next = null; // may not be required

标签:singly-linked-list,java
来源: https://codeday.me/bug/20191030/1971376.html