JAVA单向链表的实现

Java代码 复制代码
  1. package com.leo_faith.www;   
  2.   
  3. public class Node {   
  4.     Object data;   
  5.   
  6.     Node next;   
  7.   
  8.     Node(Object d) {   
  9.         data = d;   
  10.         next = null;   
  11.     }   
  12. }  
package com.leo_faith.www;

public class Node {
	Object data;

	Node next;

	Node(Object d) {
		data = d;
		next = null;
	}
}

 

Java代码 复制代码
  1. package com.leo_faith.www;   
  2.   
  3. public class LinkList {   
  4.   
  5.     /* 用变量来实现表头 */  
  6.     private Node Head = null;   
  7.   
  8.     private Node Tail = null;   
  9.   
  10.     private Node Pointer = null//point to previous   
  11.   
  12.     private int Length = 0;   
  13.   
  14.     public void deleteAll() {// 清空整个链表   
  15.         Head = null;   
  16.         Tail = null;   
  17.         Pointer = null;   
  18.         Length = 0;   
  19.     }   
  20.   
  21.     // 链表复位,使第一个节点成为当前节点   
  22.     public void reset() {   
  23.         Pointer = null;   
  24.     }   
  25.   
  26.     // 判断链表是否为空   
  27.     public boolean isEmpty() {   
  28.         return (Length == 0);   
  29.     }   
  30.   
  31.     // 判断当前结点是否为最后一个结点   
  32.     public boolean isEnd() {   
  33.         if (Length == 0)   
  34.             throw new java.lang.NullPointerException();   
  35.         else if (Length == 1)   
  36.             return true;   
  37.         else  
  38.             return (cursor() == Tail);   
  39.     }   
  40.   
  41.     // 返回当前结点的下一个结点的值,并使其成为当前结点   
  42.     public Object nextNode() {   
  43.         if (Length == 1)   
  44.             throw new java.util.NoSuchElementException();   
  45.         else if (Length == 0)   
  46.             throw new java.lang.NullPointerException();   
  47.         else {   
  48.             Node temp = cursor();   
  49.             Pointer = temp;   
  50.             if (temp != Tail)   
  51.                 return (temp.next.data);   
  52.             else  
  53.                 throw new java.util.NoSuchElementException();   
  54.         }   
  55.     }   
  56.   
  57.     // 返回当前结点的值   
  58.     public Object currentNode() {   
  59.         Node temp = cursor();   
  60.         return temp.data;   
  61.     }   
  62.   
  63.     // 在当前结点前插入一个结点,并使其成为当前结点   
  64.     public void insert(Object obj) {   
  65.         Node e = new Node(obj);   
  66.         if (Length == 0) {   
  67.             Tail = e;   
  68.             Head = e;   
  69.         } else {   
  70.             Node temp = cursor();   
  71.             e.next = temp;   
  72.             if (Pointer == null)   
  73.                 Head = e;   
  74.             else  
  75.                 Pointer.next = e;   
  76.         }   
  77.         Length++;   
  78.     }   
  79.   
  80.     // 返回链表的大小   
  81.     public int size() {   
  82.         return Length;   
  83.     }   
  84.   
  85.     // 将当前结点移出链表,下一个结点成为当前结点,   
  86.     // 如果移出的结点是最后一个结点,   
  87.     // 则第一个结点成为当前结点   
  88.     public Object remove() {   
  89.         Object temp;   
  90.         if (Length == 0)   
  91.             throw new java.util.NoSuchElementException();   
  92.         else if (Length == 1) {   
  93.             temp = Head.data;   
  94.             deleteAll();   
  95.         } else {   
  96.             Node cur = cursor();   
  97.             temp = cur.data;   
  98.             if (cur == Head)   
  99.                 Head = cur.next;   
  100.             else if (cur == Tail) {   
  101.                 Pointer.next = null;   
  102.                 reset();   
  103.             } else  
  104.                 Pointer.next = cur.next;   
  105.             Length--;   
  106.         }   
  107.         return temp;   
  108.     }   
  109.   
  110.     // 返回当前结点的指针   
  111.     private Node cursor() {   
  112.         if (Head == null)   
  113.             throw new java.lang.NullPointerException();   
  114.         else if (Pointer == null)   
  115.             return Head;   
  116.         else  
  117.             return Pointer.next;   
  118.     }   
  119.   
  120.     // 链表的简单应用举例   
  121.     public static void main(String[] args) {   
  122.         LinkList a = new LinkList();   
  123.         for (int i = 1; i <= 10; i++)   
  124.             a.insert(new Integer(i));   
  125.         System.out.println("The currentNode is:" + a.currentNode());   
  126.         while (!a.isEnd())   
  127.             System.out.println("The nextNode is:" + a.nextNode());   
  128.         a.reset();   
  129.         while (!a.isEnd()) {   
  130.             a.remove();   
  131.         }   
  132.         a.remove();   
  133.         a.reset();   
  134.         if (a.isEmpty()) {   
  135.             System.out.println("There is no Node in List");   
  136.         }   
  137.     }   

你可能感兴趣的:(java)