免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1474 | 回复: 0
打印 上一主题 下一主题

用java实现的单链表 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-06-17 09:58 |只看该作者 |倒序浏览
用java实现的单链表
SingleLinkedList.java
  1. /**
  2. *
  3. */
  4. package javay.util;

  5. import java.io.Serializable;
  6. import java.util.AbstractSequentialList;
  7. import java.util.Collection;
  8. import java.util.ConcurrentModificationException;
  9. import java.util.List;
  10. import java.util.ListIterator;
  11. import java.util.NoSuchElementException;

  12. /**
  13. * @author DBJ
  14. */
  15. public class SingleLinkedList<E> extends AbstractSequentialList<E> implements
  16.         List<E>, Serializable, Cloneable {

  17.     private static class Node<E> {
  18.         E item;
  19.         Node<E> next;

  20.         Node(E element, Node<E> next) {
  21.             this.item = element;
  22.             this.next = next;
  23.         }
  24.     }

  25.     /**
  26.      * Tells if the argument is the index of a valid position for an
  27.      * iterator or an add operation.
  28.      */
  29.     private boolean isPositionIndex(int index) {
  30.         return index >= 0 && index <= size;
  31.     }

  32.     private void checkPositionIndex(int index) {
  33.         if (!isPositionIndex(index))
  34.             throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
  35.     }

  36.     /**
  37.      * Constructs an IndexOutOfBoundsException detail message.
  38.      * Of the many possible refactorings of the error handling code,
  39.      * this "outlining" performs best with both server and client VMs.
  40.      */
  41.     private String outOfBoundsMsg(int index) {
  42.         return "Index: "+index+", Size: "+size;
  43.     }

  44.     private class ListItr implements ListIterator<E> {
  45.         private Node<E> lastReturned;
  46.         private Node<E> next;
  47.         private int nextIndex;
  48.         private int expectedModCount = modCount;

  49.         ListItr(int index) {
  50.             // assert isPositionIndex(index);
  51.             next = (index == size) ? null : node(index);
  52.             nextIndex = index;
  53.         }

  54.         @Override
  55.         public boolean hasNext() {
  56.             return nextIndex < size;
  57.         }

  58.         @Override
  59.         public E next() {
  60.             checkForComodification();
  61.             if (!hasNext())
  62.                 throw new NoSuchElementException();

  63.             lastReturned = next;
  64.             next = next.next;
  65.             nextIndex++;
  66.             return lastReturned.item;
  67.         }

  68.         @Override
  69.         public boolean hasPrevious() {
  70.             return nextIndex > 0;
  71.         }

  72.         @Override
  73.         public E previous() {
  74.             checkForComodification();
  75.             if (!hasPrevious())
  76.                 throw new NoSuchElementException();

  77.             lastReturned = next = (next == null) ? last : node(previousIndex());
  78.             nextIndex--;
  79.             return lastReturned.item;
  80.         }

  81.         @Override
  82.         public int nextIndex() {
  83.             return nextIndex;
  84.         }

  85.         @Override
  86.         public int previousIndex() {
  87.             return nextIndex - 1;
  88.         }

  89.         @Override
  90.         public void remove() {
  91.             checkForComodification();
  92.             if (lastReturned == null)
  93.                 throw new IllegalStateException();

  94.             Node<E> lastNext = lastReturned.next;
  95.             unlink(lastReturned);
  96.             if (next == lastReturned)
  97.                 next = lastNext;
  98.             else
  99.                 nextIndex--;
  100.             lastReturned = null;
  101.             expectedModCount++;
  102.         }

  103.         @Override
  104.         public void set(E e) {
  105.             if (lastReturned == null)
  106.                 throw new IllegalStateException();
  107.             checkForComodification();
  108.             lastReturned.item = e;
  109.         }

  110.         @Override
  111.         public void add(E e) {
  112.             checkForComodification();
  113.             lastReturned = null;
  114.             if (next == null)
  115.                 linkLast(e);
  116.             else
  117.                 linkBefore(e, next);
  118.             nextIndex++;
  119.             expectedModCount++;
  120.         }

  121.         final void checkForComodification() {
  122.             if (modCount != expectedModCount)
  123.                 throw new ConcurrentModificationException();
  124.         }
  125.     }

  126.     transient int size = 0;

  127.     /**
  128.      * Pointer to first node.
  129.      */
  130.     transient Node<E> first;

  131.     /**
  132.      * Pointer to last node.
  133.      */
  134.     transient Node<E> last;

  135.     /**
  136.      * SingleLinkedList
  137.      */
  138.     public SingleLinkedList() {
  139.     }

  140.     /**
  141.      * Constructs a list containing the elements of the specified
  142.      * collection, in the order they are returned by the collection's
  143.      * iterator.
  144.      *
  145.      * @param  c the collection whose elements are to be placed into this list
  146.      * @throws NullPointerException if the specified collection is null
  147.      */
  148.     public SingleLinkedList(Collection<? extends E> c) {
  149.         this();
  150.         addAll(c);
  151.     }

  152.     /**
  153.      * Returns the (non-null) Node at the specified element index.
  154.      */
  155.     Node<E> node(int index) {
  156.         // assert isElementIndex(index);

  157.         // TODO:called by foreach, contains, toArray, remove, retainAll,get
  158.         // at LinkedList, here is binarySearch
  159.         Node<E> x = first;
  160.         for (int i = 0; i < index; i++) {
  161.             x = x.next;
  162.         }
  163.         return x;
  164.     }

  165.     /*
  166.      * @see java.util.AbstractSequentialList#listIterator(int)
  167.      */
  168.     @Override
  169.     public ListIterator<E> listIterator(int index) {
  170.         checkPositionIndex(index);
  171.         return new ListItr(index);
  172.     }

  173.     /*
  174.      * @see java.util.AbstractCollection#size()
  175.      */
  176.     @Override
  177.     public int size() {
  178.         return size;
  179.     }

  180.     /**
  181.      * Links e as last element.
  182.      */
  183.     void linkLast(E e) {
  184.         final Node<E> l = last;
  185.         final Node<E> newNode = new Node<>(e, null);
  186.         last = newNode;
  187.         if (l == null)
  188.             first = newNode;
  189.         else
  190.             l.next = newNode;
  191.         size++;
  192.         modCount++;
  193.     }

  194.     /**
  195.      * Inserts element e before non-null Node succ.
  196.      */
  197.     void linkBefore(E e, Node<E> succ) {
  198.         // assert succ != null;
  199.         Node<E> prev = null;
  200.         Node<E> node = first;
  201.         // TODO: linkBefore
  202.         while(node.next != null) {
  203.             prev = node;
  204.             if (node == succ) {
  205.                 break;
  206.             }
  207.             node = node.next;
  208.         }
  209.         final Node<E> newNode = new Node<>(e, succ);
  210.         if (prev == null)
  211.             first = newNode;
  212.         else
  213.             prev.next = newNode;
  214.         size++;
  215.         modCount++;
  216.     }

  217.     /**
  218.      * Unlinks non-null node x.
  219.      */
  220.     E unlink(Node<E> x) {
  221.         // assert x != null;
  222.         final E element = x.item;
  223.         final Node<E> next = x.next;

  224.         Node<E> prev = null;
  225.         Node<E> node = first;
  226.         // TODO: unlink called by remove, retainAll
  227.         boolean bFound = false;
  228.         while(node.next != null) {
  229.             if (node == x) {
  230.                 bFound = true;
  231.                 break;
  232.             }

  233.             prev = node;
  234.             node = node.next;
  235.         }
  236.         if (bFound == false) {
  237.             if (node == x) {
  238.                 bFound = true;
  239.             }
  240.         }
  241.         if (bFound == false) {
  242.             System.out.println("SingleLinkedList@unlink not found." + x);
  243.         }

  244.         if (prev == null) {
  245.             first = node.next;
  246.         } else {
  247.             prev.next = next;
  248.         }

  249.         if (next == null) {
  250.             last = prev;
  251.         } else {
  252.             x.next = null;
  253.         }

  254.         x.item = null;
  255.         size--;
  256.         modCount++;
  257.         return element;
  258.     }
  259. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP