java實現資料結構單鏈表示例(java單鏈表)_java

來源:互聯網
上載者:User

複製代碼 代碼如下:

/**
 * 單向鏈表
 *
 */
public class NodeList<E> {
 private static class Node<E> { // 節點類
  E data; // 節點上的資料
  Node<E> next; // 指向下一個節點

  Node(E e) {
   this.data = e;
   this.next = null;
  }
 }

 private Node<E> head; // 鏈表的前端節點
 private Node<E> last; // 鏈表的尾節點
 private Node<E> other = null;
 private int length = 0; // 節點數量

 /**
  * 無參構造方法
  */
 public NodeList() {
  // 預設節點為空白
  this.head = new Node<E>(null);
 }

 /**
  * 初始化時建立一個節點
  *
  * @param data
  *            資料
  */
 public NodeList(E data) {
  this.head = new Node<E>(data);
  this.last = head;
  length++;
 }

 /**
  * 添加一個節點(尾插法)
  *
  * @param data
  *            資料
  */
 public void add(E data) {
  if (isEmpty()) {
   head = new Node<E>(data);
   last = head;
   length++;
  } else {
   Node<E> newNode = new Node<E>(data);
   last.next = newNode;
   last = newNode;
  }
 }

 /**
  * 獲得索引處的資料(索引輸入錯誤拋出越界異常)
  * @param index 索引
  * @return 索引處資料
  */
 public E get(int index){
  if(index<0 || index>length){
   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(E oldValue,E newValue){
  other = head;
  while(other!=null){
   if(other.data.equals(oldValue)){
    other.data = newValue;
    return true;
   }
   other = other.next;
  }
  return false;
 }

 /**
  * 在指定元素後插入一個元素
  *
  * @param data
  *            指定的元素
  * @param insertData
  *            需要插入的元素
  * @return false為未找到元素,true為插入成功
  */
 public boolean add(E data, E insertData) {
  other = head;
  while (other != null) {
   if (other.data.equals(data)) {
    Node<E> newNode = new Node<E>(insertData);
    Node<E> temp = other.next;
    newNode.next = temp;
    other.next = newNode;
    length++;
    return true;
   }
   other = other.next;
  }
  return false;
 }

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

 /**
  * 移除指定的元素
  * @param data 需要移除的元素
  * @return 不存在為false,成功為true
  */
 public boolean remove(E data){
  other = head;
  Node<E> temp = head;  //臨時變數,用於儲存前一個節點
  while(other!=null){
   if(other.data.equals(data)){
    temp.next = other.next;
    length--;
    return true;
   }
   temp = other;
   other = other.next;
  }
  return false;
 }

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

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

 /**
  * 輸出所有節點
  */
 public void printLink() {
  if(isEmpty()){
   System.out.println("空鏈表");
  }else{
   other = head;
   while (other != null) {
    System.out.print(other.data);
    other = other.next;
   }
   System.out.println();
  }
 }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.