List接口和Deque接口的一种双向链表实现。非同步的。

快速失败机制。ConcurrentModificationException

List(JDK1.7)(2)

 

结点结构

List(JDK1.7)(2)

 

插入结点

List(JDK1.7)(2)

List(JDK1.7)(2)

 

删除结点

List(JDK1.7)(2)

 

add()

List(JDK1.7)(2)

remove()

List(JDK1.7)(2)

clear()

List(JDK1.7)(2)

 

get()

List(JDK1.7)(2)

List(JDK1.7)(2)

List(JDK1.7)(2)

List(JDK1.7)(2)

 

set()

List(JDK1.7)(2)

和队列相关的操作

peek() 和 element()

List(JDK1.7)(2)

poll() 和 remove()

List(JDK1.7)(2)

offer()

List(JDK1.7)(2)

和栈相关的操作

List(JDK1.7)(2)

List(JDK1.7)(2)

迭代器

List(JDK1.7)(2)

List(JDK1.7)(2)

List(JDK1.7)(2)

List(JDK1.7)(2)

List(JDK1.7)(2)

 

降序迭代器

List(JDK1.7)(2)

相关文章:

  • 2022-01-28
  • 2021-12-06
  • 2021-08-09
  • 2021-07-07
  • 2022-12-23
  • 2021-05-20
  • 2021-09-08
猜你喜欢
  • 2021-05-26
  • 2022-01-14
  • 2021-12-09
  • 2022-01-19
  • 2021-08-16
  • 2022-12-23
  • 2021-04-08
相关资源
相似解决方案