java util LinkedList offerLast(E e) 将指定的元素插入LinkedList的末尾。1 语法public boolean offerLast(E e)2 参数e:要添加的
java util LinkedList offerFirst(E e) 将指定的元素插入LinkedList的开头。1 语法public boolean offerFirst(E e)2 参数e:要添加
java util LinkedList offer(E e)将指定的元素添加为LinkedList的最后一个元素。1 语法public boolean offer(E e)2 参数e:要添加的
java util LinkedList listIterator(int index) 从LinkedList中的指定位置开始,它用于按正确顺序返回元素的LinkedList迭代器。1 语法pu
java util LinkedList lastIndexOf(Object o)用于返回指定元素最后一次出现的LinkedList中的索引;如果LinkedList不包含任何元素,则返回-
java util LinkedList indexOf(Object o)用于返回指定元素首次出现的LinkedList中的索引;如果LinkedList不包含任何元素,则返回-1。1 语
java util LinkedList getLast()用于返回List中的最后一个元素。1 语法public E getLast()2 参数无3 返回值返回List中的最后一个元素
java util LinkedList getFirst()用于返回LinkedList中的第一个元素。1 语法public E getFirst()2 参数无3 返回值返回LinkedList中的
java util LinkedList get(int index)用于返回LinkedList中指定位置的元素。1 语法public E get(int index)2 参数index:要返回的元
java util LinkedList element()方法用于检索LinkedList的第一个元素。1 语法public E element()2 参数无3 返回值返回LinkedList的第