欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java中LinkedList使用迭代器优化移除批量元素原理

程序员文章站 2022-06-16 21:41:44
本文主要介绍了java中linkedlist使用迭代器优化移除批量元素原理,分享给大家,具体如下:public interface iterator { /** *是否...

本文主要介绍了java中linkedlist使用迭代器优化移除批量元素原理,分享给大家,具体如下:

public interface iterator<e> {
    /**
     *是否还有下一个元素
     */
    boolean hasnext();
    /**
     *下一个元素
     */
    e next();
    /**
     * 从集合中删除最后一个返回的元素
     */
    default void remove() {
        throw new unsupportedoperationexception("remove");
    }
    /**
     * 传入一个consumer对剩余的每个元素执行指定的操作,直到所有元素已处理或操作引发异常
     */
    default void foreachremaining(consumer<? super e> action) {
        //requirenonnull 静态方法将会在参数为null时主动抛出nullpointerexception 异常。
        objects.requirenonnull(action);
        while (hasnext())
            action.accept(next());
    }
}
public interface listiterator<e> extends iterator<e> {
    
    /**
     * 是否有后继
     */
    boolean hasnext();
    /**
     * 后继节点
     */
    e next();

    /**
     * 是否有前驱
     */
    boolean hasprevious();

    /**
     * 前驱节点
     */
    e previous();

    /**
     * 下一个节点的下标
     */
    int nextindex();

    /**
     * 前驱节点的下标
     */
    int previousindex();

    /**
     * 移除元素
     */
    void remove();

    /**
     * 替换最后返回的元素
     */
    void set(e e);

    /**
     * 插入一个结点到最后返回的元素之后
     */
    void add(e e);
}

普通版 arraylistdie迭代器

调用方法:list.iterator();

public iterator<e> iterator() {
        return new itr();
    }
    private class itr implements iterator<e> {
        int cursor;       // 当前下标
        int lastret = -1; // 最后一个元素的索引,没有返回1
        int expectedmodcount = modcount;//创建迭代器时列表被修改的次数,防止多线程操作。快速失败
        /**
        * 先检查一下是否列表已经被修改过
        * 做一些简单的越界检查
        * 返回元素,并且记录下返回元素的下标给lastret,当前下标+1,
        */
        public e next() {
            checkforcomodification();
            int i = cursor;
            if (i >= size)
                throw new nosuchelementexception();
            object[] elementdata = arraylist.this.elementdata;
            if (i >= elementdata.length)
                throw new concurrentmodificationexception();
            cursor = i + 1;
            return (e) elementdata[lastret = i];
        }
        /**
        * 调用arraylistdie自身的remove方法移除元素
        * arraylistdie自身的remove 会修改modcount的值所以需要更新迭代器的expectedmodcount
        * expectedmodcount = modcount;
        */
        public void remove() {
            if (lastret < 0)
                throw new illegalstateexception();
            checkforcomodification();
            try {
                arraylist.this.remove(lastret);
                cursor = lastret;
                lastret = -1;
                expectedmodcount = modcount;
            } catch (indexoutofboundsexception ex) {
                throw new concurrentmodificationexception();
            }
        }
        //把剩下为next遍历的所有元素做一个遍历消费
        @override
        @suppresswarnings("unchecked")
        public void foreachremaining(consumer<? super e> consumer) {
            objects.requirenonnull(consumer);
            final int size = arraylist.this.size;
            int i = cursor;
            if (i >= size) {
                return;
            }
            final object[] elementdata = arraylist.this.elementdata;
            if (i >= elementdata.length) {
                throw new concurrentmodificationexception();
            }
            while (i != size && modcount == expectedmodcount) {
                consumer.accept((e) elementdata[i++]);
            }
            // update once at end of iteration to reduce heap write traffic
            cursor = i;
            lastret = i - 1;
            checkforcomodification();
        }
        //检查是否列表已经被修改了
        final void checkforcomodification() {
            if (modcount != expectedmodcount)
                throw new concurrentmodificationexception();
        }
    }

增强版本 arraylistdie迭代器

java中LinkedList使用迭代器优化移除批量元素原理

实现了listiterator接口,listiterator接口继承iterator接口。并且listitr extends itr。itr有的方法其都有。并且增加了

  • hasprevious 是否有前驱
  • nextindex 下一个索引位置
  • previousindex 前驱的索引位置
  • previous 前驱元素
  • set 替换最后返回的元素
  • add 插入一个结点到最后返回的元素之后
private class listitr extends itr implements listiterator<e> {
        listitr(int index) {
            super();
            cursor = index;
        }
        public boolean hasprevious() {
            return cursor != 0;
        }
        public int nextindex() {
            return cursor;
        }
        public int previousindex() {
            return cursor - 1;
        }
        public e previous() {
            checkforcomodification();
            int i = cursor - 1;
            if (i < 0)
                throw new nosuchelementexception();
            object[] elementdata = arraylist.this.elementdata;
            if (i >= elementdata.length)
                throw new concurrentmodificationexception();
            cursor = i;
            return (e) elementdata[lastret = i];
        }
        //根据lastret设置元素
        public void set(e e) {
            if (lastret < 0)
                throw new illegalstateexception();
            checkforcomodification();
            try {
                arraylist.this.set(lastret, e);
                expectedmodcount = modcount;
            } catch (indexoutofboundsexception ex) {
                throw new concurrentmodificationexception();
            }
        }
        public void add(e e) {
            checkforcomodification();

            try {
                int i = cursor;
                arraylist.this.add(i, e);
                cursor = i + 1;
                lastret = -1;
                expectedmodcount = modcount;
            } catch (indexoutofboundsexception ex) {
                throw new concurrentmodificationexception();
            }
        }
    }

重点看一下linkedlist的迭代器

调用方法:list.iterator();

java中LinkedList使用迭代器优化移除批量元素原理

重点看下remove方法

private class listitr implements listiterator<e> {
        //返回的节点
        private node<e> lastreturned;
        //下一个节点
        private node<e> next;
        //下一个节点索引
        private int nextindex;
        //修改次数
        private int expectedmodcount = modcount;

        listitr(int index) {
            //根据传进来的数字设置next等属性,默认传0
            next = (index == size) ? null : node(index);
            nextindex = index;
        }
        //直接调用节点的后继指针
        public e next() {
            checkforcomodification();
            if (!hasnext())
                throw new nosuchelementexception();
            lastreturned = next;
            next = next.next;
            nextindex++;
            return lastreturned.item;
        }
        //返回节点的前驱
        public e previous() {
            checkforcomodification();
            if (!hasprevious())
                throw new nosuchelementexception();

            lastreturned = next = (next == null) ? last : next.prev;
            nextindex--;
            return lastreturned.item;
        }
        /**
        * 最重要的方法,在linkedlist中按一定规则移除大量元素时用这个方法
        * 为什么会比list.remove效率高呢;
        */
        public void remove() {
            checkforcomodification();
            if (lastreturned == null)
                throw new illegalstateexception();

            node<e> lastnext = lastreturned.next;
            unlink(lastreturned);
            if (next == lastreturned)
                next = lastnext;
            else
                nextindex--;
            lastreturned = null;
            expectedmodcount++;
        }

        public void set(e e) {
            if (lastreturned == null)
                throw new illegalstateexception();
            checkforcomodification();
            lastreturned.item = e;
        }

        public void add(e e) {
            checkforcomodification();
            lastreturned = null;
            if (next == null)
                linklast(e);
            else
                linkbefore(e, next);
            nextindex++;
            expectedmodcount++;
        }
    }

linkedlist 源码的remove(int index)的过程是
先逐一移动指针,再找到要移除的node,最后再修改这个node前驱后继等移除node。如果有批量元素要按规则移除的话这么做时间复杂度o(n²)。但是使用迭代器是o(n)。

先看看list.remove(idnex)是怎么处理的

linkedlist是双向链表,这里示意图简单画个单链表
比如要移除链表中偶数元素,先循环调用get方法,指针逐渐后移获得元素,比如获得index = 1;指针后移两次才能获得元素。
当发现元素值为偶数是。使用idnex移除元素,如list.remove(1);链表先node node(int index)返回该index下的元素,与get方法一样。然后再做前驱后继的修改。所以在remove之前相当于做了两次get请求。导致时间复杂度是o(n)。

java中LinkedList使用迭代器优化移除批量元素原理

java中LinkedList使用迭代器优化移除批量元素原理

继续移除下一个元素需要重新再走一遍链表(步骤忽略当index大于半数,链表倒序查找)

java中LinkedList使用迭代器优化移除批量元素原理

以上如果移除偶数指针做了6次移动。

删除2节点
get请求移动1次,remove(1)移动1次。

删除4节点
get请求移动2次,remove(2)移动2次。

迭代器的处理

迭代器的next指针执行一次一直向后移动的操作。一共只需要移动4次。当元素越多时这个差距会越明显。整体上移除批量元素是o(n),而使用list.remove(index)移除批量元素是o(n²)

java中LinkedList使用迭代器优化移除批量元素原理

到此这篇关于java中linkedlist使用迭代器优化移除批量元素原理的文章就介绍到这了,更多相关linkedlist 迭代器批量移除内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!