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的第
java util LinkedList descendingIterator()用于以相反的顺序在双端队列中返回元素上的迭代器。1 语法public Iterator<E> descendingIte
java util LinkedList contains(Object o)如果LinkedList包含指定的元素,则用于返回true。1 语法public boolean contains(Object o)2
java util LinkedList clone()方法用于克隆LinkedList对象。1 语法public Object clone()2 参数无3 返回值返回LinkedList的浅表副本。
java util LinkedList clear() 方法用于从LinkedList中删除所有元素。1 语法public void clear()2 参数无3 返回值无4 示例package
java util LinkedList addLast(E e) 方法用于将给定元素附加到LinkedList的末尾。1 语法public void addLast(E e)2 参数e:要添加的