Java LinkedList
LinkedList是基于双向链表实现的,先看构造方法和方法
Constructor Summary
Constructors Constructor Description LinkedList()Constructs an empty list.LinkedList(Collection<? extends E> c)Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method Description voidadd(int index,E element)Inserts the specified element at the specified position in this list.booleanadd(E e)Appends the specified element to the end of this list.booleanaddAll(int index,Collection<? extendsE> c)Inserts all of the elements in the specified collection into this list, starting at the specified position.booleanaddAll(Collection<? extends E> c)Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.voidaddFirst(E e)Inserts the specified element at the beginning of this list.voidaddLast(E e)Appends the specified element to the end of this list.voidclear()Removes all of the elements from this list.Objectclone()Returns a shallow copy of thisLinkedList.booleancontains(Object o)Returnstrueif this list contains the specified element.Iterator<E>descendingIterator()Returns an iterator over the elements in this deque in reverse sequential order.Eelement()Retrieves, but does not remove, the head (first element) of this list.Eget(int index)Returns the element at the specified position in this list.EgetFirst()Returns the first element in this list.EgetLast()Returns the last element in this list.intindexOf(Object o)Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.intlastIndexOf(Object o)Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.ListIterator<E>listIterator(int index)Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in the list.booleanoffer(E e)Adds the specified element as the tail (last element) of this list.booleanofferFirst(E e)Inserts the specified element at the front of this list.booleanofferLast(E e)Inserts the specified element at the end of this list.Epeek()Retrieves, but does not remove, the head (first element) of this list.EpeekFirst()Retrieves, but does not remove, the first element of this list, or returnsnullif this list is empty.EpeekLast()Retrieves, but does not remove, the last element of this list, or returnsnullif this list is empty.Epoll()Retrieves and removes the head (first element) of this list.EpollFirst()Retrieves and removes the first element of this list, or returnsnullif this list is empty.EpollLast()Retrieves and removes the last element of this list, or returnsnullif this list is empty.Epop()Pops an element from the stack represented by this list.voidpush(E e)Pushes an element onto the stack represented by this list.Eremove()Retrieves and removes the head (first element) of this list.Eremove(int index)Removes the element at the specified position in this list.booleanremove(Object o)Removes the first occurrence of the specified element from this list, if it is present.EremoveFirst()Removes and returns the first element from this list.booleanremoveFirstOccurrence(Object o)Removes the first occurrence of the specified element in this list (when traversing the list from head to tail).EremoveLast()Removes and returns the last element from this list.booleanremoveLastOccurrence(Object o)Removes the last occurrence of the specified element in this list (when traversing the list from head to tail).Eset(int index,E element)Replaces the element at the specified position in this list with the specified element.intsize()Returns the number of elements in this list.Spliterator<E>spliterator()Creates a late-binding and fail-fastSpliteratorover the elements in this list.Object[]toArray()Returns an array containing all of the elements in this list in proper sequence (from first to last element).<T> T[]toArray(T[] a)Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array
构造方法LinkedList()//创建一个空LinkedList
LinkedList(Coolection<? extends E>)//创建一个有内容的LinkedList,可以将别的LinkedList复制进来(不是引用)
LinkedList增加和删除元素都是常数时间(假设位置已知)
add(int index,E element)向索引位置插入,线性时间
add(E e)默认队尾
addFirst(E e)插入队头
addList(E e)插入队尾
removeFirst(E e)删除队头元素
removeLast(E e)删除队尾元素
LinkedList查询修改元素是线性时间,这点不如ArrayList但是LinkedList的增加和删除是常数时间,不需要移动其他元素的位置。
Java LinkedList的更多相关文章
- java LinkedList(链表)
LinkedList也像ArrayList一样实现了基本的List接口,但是它执行某些操作(在List的中间插入和移除)时比ArrayList更高效,但在随机访问方面却要逊色一些 LinkedList ...
- Java LinkedList add vs push
Java LinkedList add 是加在list尾部. LinkedList push 施加在list头部. 等同于addFirst.
- Java LinkedList【笔记】
Java LinkedList[笔记] LinkedList LinkedList 适用于要求有顺序,并且会按照顺序进行迭代的场景,依赖于底层的链表结构 LinkedList基本结构 LinkedLi ...
- java LinkedList (详解)
Java 链表(LinkedList) 一.链表简介 1.链表 (Linked List) 是一种常见的基础数据结构,是一种线性表,但是链表不会按线性表的顺序存储数据,而是每个节点里存到下一个节点的地 ...
- Java LinkedList 源码剖析
LinkedList同时实现了List接口和Deque接口,也就是说它既可以看作一个顺序容器,又可以看作一个队列(Queue),同时又可以看作一个栈(Stack).这样看来,LinkedList简直就 ...
- java@ LinkedList 学习
package abc.com; import java.util.LinkedList; public class TestLinkedList { static void prt(Object o ...
- JAVA LinkedList和ArrayList的使用及性能分析
第1部分 List概括List的框架图List 是一个接口,它继承于Collection的接口.它代表着有序的队列.AbstractList 是一个抽象类,它继承于AbstractCollection ...
- [Java] LinkedList / Queue - 源代码学习笔记
简单地画了下 LinkedList 的继承关系,如下图.只是画了关注的部分,并不是完整的关系图.本博文涉及的是 Queue, Deque, LinkedList 的源代码阅读笔记.关于 List 接口 ...
- Java LinkedList 源码分析
简介 LinkedList 是一个常用的集合类,用于顺序存储元素. LinkedList 经常和 ArrayList 一起被提及.大部分人应该都知道 ArrayList 内部采用数组保存元素,适合用于 ...
- Java LinkedList特有方法程序小解 && 使用LinkedList 模拟一个堆栈或者队列数据结构。
package Collection; import java.util.LinkedList; /* LinkedList:特有的方法 addFirst()/addLast(); getFirst( ...
随机推荐
- 重识linux-linux的账号与用户组
重识linux-linux的账号与用户组 1 账号 每个登录linux系统的用户都有 uid和gid uid就是用户ID,gid就是组ID 在系统上存账号信息的文件是 /etc/passwd 存密码相 ...
- <转载>AWS 基础知识
什么是AWS? Amazon Web Services (AWS) , 其实就是 亚马逊提供的专业云计算服务.其提供服务包括:亚马逊弹性计算网云(Amazon EC2).亚马逊简单储存服务(Amazo ...
- API / DOM
浏览器特性 当控制台报错时,IE9会停止执行JS.当打开控制台时会执行后续JS ------------------------------------------------------------ ...
- day25-面向对象结构与成员
1.面向对象结构分析 如下面的图所示:面向对象整体大致分两块区域: 每个大区域又可以分为多个小部分: class A: name = 'Tom' # 静态变量(静态字段) __iphone = '13 ...
- Vue 修改dist 目录.
前后端分析之后,前端 打包处理 2
- linux下安装jdk,tomcat,maven
1. jdk安装 下载jdk的linux版本. >tar -zxvf jdk1.8.0_191.tar.gz 配置环境变量: >vim /etc/profile最前面添加: expor ...
- 一个简单的SignalR例子
本文介绍如何使用SignalR的Hub制作一个简单的点赞页面.不同浏览器(或者不同窗口)打开同一个页面,在任何一个页面点赞,所有页面同时更新点赞数. 1.使用Visual Studio Communi ...
- C++复习:多态
多态 问题引出(赋值兼容性原则遇上函数重写) 面向对象新需求 C++提供的多态解决方案 多态案例 多态工程意义 面向对象三大概念.三种境界(封装.继承. ...
- Hive安装与配置--- 基于MySQL元数据
hive是基于Hadoop的一个数据仓库工具,可以将结构化的数据文件映射为一张数据库表,并提供简单的sql查询功能,可以将sql语句转换为MapReduce任务进行运行. 其优点是学习成本低,可以通过 ...
- servlet路径获取
本文章主要讨论以下几种request获取路径的方法: request.getServletPath() request.getPathInfo() request.getContextPath() r ...