《Java数据结构和算法》双端链表

与单链表的不同:新增一个对最后一个链结点的引用,使其可以像在表头插入链结点一样在表尾插入结点;而若在单链表的表尾插入结点就需要遍历整个链表直到表尾。

//链尾插入

 public void insertLast(long dd){
  LinkD newLink = new LinkD(dd);
  if(isEmpty())
   first = newLink;
  else
   last.next = newLink;
  last = newLink;
 }
//双端链表

package Structure;


class LinkD{
 public long dData;
 public LinkD next;
 
 public LinkD(long d){
  dData = d;
 }
 
 public void displayLink(){
  System.out.print(dData+" ");
 }
}//end class Link
class FirstLastList{
 private LinkD first;
 private LinkD last;
 
 public FirstLastList(){
  first = null;
  last = null;
 }
 
 public boolean isEmpty(){
  return (first==null);
 }
 
 public void insertFirst(long dd){
  LinkD newLink = new LinkD(dd);
  
  if(isEmpty())
   last = newLink;
  newLink.next = first;
  first = newLink;
 }
 
 //链尾插入
 public void insertLast(long dd){
  LinkD newLink = new LinkD(dd);
  if(isEmpty())
   first = newLink;
  else
   last.next = newLink;
  last = newLink;
 }
 
 public long deleteFirst(){
  long temp = first.dData;
  if(first.next==null)
   last=null;
  first = first.next;
  return temp;
 }
 
 public void displayList(){
  System.out.print("List(first-->last): ");
  LinkD current = first;
  while(current!=null){
   current.displayLink();
   current = current.next;
  }
  System.out.println("");
 }
}
public class firstLastListD {
 public static void main(String[] args){
  FirstLastList theList = new FirstLastList();
  
  theList.insertFirst(202);
  theList.insertFirst(221);
  theList.insertFirst(222);
  theList.insertFirst(232);
  
  theList.insertLast(33);
  theList.insertLast(313);
  theList.insertLast(303);
  theList.insertLast(323);
  
  theList.displayList();
  
  theList.deleteFirst();
  theList.deleteFirst();
  
  theList.displayList();
 }
}

《Java数据结构和算法》双端链表_第1张图片

你可能感兴趣的:(《Java数据结构和算法》双端链表)