程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java數據構造之完成雙向鏈表的示例

java數據構造之完成雙向鏈表的示例

編輯:關於JAVA

java數據構造之完成雙向鏈表的示例。本站提示廣大學習愛好者:(java數據構造之完成雙向鏈表的示例)文章只能為提供參考,不一定能成為您想要的結果。以下是java數據構造之完成雙向鏈表的示例正文



/**
 * 雙向鏈表的完成
 * @author Skip
 * @version 1.0
 */
public class DoubleNodeList<T> {
 //節點類
 private static class Node<T>{
  Node<T> perv;  //前節點
  Node<T> next;  //後節點
  T data;    //數據

  public Node(T t){
   this.data = t;
  }
 }
 private Node<T> head;  //頭節點
 private Node<T> last;  //尾節點
 private Node<T> other;  //備用節點寄存暫時操作
 private int length;  //鏈表長度

 /**
  * 無參結構
  */
 public DoubleNodeList(){
  head = new Node<T>(null);
  last = head;
  length = 0;
 }

 /**
  * 初始化時創立一個節點
  * @param data 數據
  */
 public DoubleNodeList(T data){
  head = new Node<T>(data);
  last = head;
  length = 1;
 }

 /**
  * 添加一個節點
  * @param data 添加的數據
  */
 public void add(T data){
  if(isEmpty()){
   head = new Node<T>(data);
   last = head;
   length++;
  }else{
   //尾插法
   other = new Node<T>(data);
   other.perv = last;
   last.next = other;
   last = other;
   length++;
  }
 }

 /**
  * 在指定命據後拔出一個節點
  * @param data 指定的數據
  * @param insertData 拔出的數據
  * @return 拔出勝利前往true,不勝利前往false
  */
 public boolean addAfert(T data , T insertData){
  other = head;
  while(other != null){
   if(other.data.equals(data)){
    Node<T> t = new Node<T>(insertData);
    t.perv = other;
    t.next = other.next;
    other.next = t;
    //斷定能否在最初一個節點後添加節點
    if(t.next==null){
     last = t;
    }
    length++;
    return true;
   }
   other = other.next;
  }
  return false;
 }

 /**
  * 在指定命據前拔出一個節點
  * @param data 指定的數據
  * @param insertData 拔出的數據
  * @return 拔出勝利前往true,不勝利前往false
  */
 public boolean addBefore(T data, T insertData){
  other = head;
  while(other != null){
   if(other.data.equals(data)){
    Node<T> t = new Node<T>(insertData);
    t.perv = other.perv;
    t.next = other;
    other.perv.next = t;
    length++;
    return true;
   }
   other = other.next;
  }
  return false;
 }

 /**
  * 取得索引處的數據
  * @param index 索引
  * @return 數據
  */
 public T get(int index){
  if(index>length || index<0){
   throw new IndexOutOfBoundsException("索引越界:"+index);
  }
  other = head;
  for(int i=0;i<index;i++){
   other = other.next;
  }
  return other.data;
 }

 /**
  * 新值調換舊值
  * @return 勝利為true,未找到為false
  */
 public boolean set(T oldValue,T newValue){
  other = head;
  while(other!=null){
   if(other.data.equals(oldValue)){
    other.data = newValue;
    return true;
   }
   other = other.next;
  }
  return false;
 }

 /**
  * 移除指定的元素
  * @param data 須要移除的元素
  * @return 不存在為false,勝利為true
  */
 public boolean remove(T data){
  other = head;
  while(other != null){
   if(other.data.equals(data)){
    other.perv.next = other.next;
    length--;
    return true;
   }
   other = other.next;
  }
  return false;
 }

 /**
  * 鏈表中能否包括此元素
  * @return 包括為true,不包括為false
  */
 public boolean contains(T data){
  other = head;
  while(other != null){
   if(other.data.equals(data)){
    return true;
   }
   other = other.next;
  }
  return false;
 }

 /**
  * 取得最初一個節點的數據
  * @return 最初一個節點的數據
  */
 public T getLast(){
  return last.data;
 }

 /**
  * 取得第一個節點的數據
  * @return 第一個節點的數據
  */
 public T getFirst(){
  return head.data;
 }

 /**
  * 取得鏈表的長度
  * @return 長度
  */
 public int getSize(){
  return length;
 }

 /**
  * 能否為空鏈表
  * @return 空鏈表為true,非空鏈表為false
  */
 public boolean isEmpty(){
  return length==0;
 }

 /**
  * 清空鏈表
  */
 public void clear(){
  head = null;
  length = 0;
 }

 /**
  * 輸入鏈表內一切節點
  */
 public void printList(){
  if(isEmpty()){
   System.out.println("空鏈表");
  }else{
   other = head;
   for(int i=0;i<length;i++){
    System.out.print(other.data+" ");
    other = other.next;
   }
   System.out.println();
  }
 }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved