1、增删改查分别对应LinkedList中的哪些成员方法?
增:add(int index, E element);
删:remove(int index);
改:set(int index, E element);
查:get(int index);
2、遍历整个LinkedList可以用哪些方法?
(1)增强for循环
for(E e:list){sout(e)}
(2)迭代器
Interator it = list.iterator();
while(it.hasNext()){sout(it.next());}
3、LinkedList如何当栈使用?
push() —— 在双向链表队首加元素;
pop() —— 在双向链表队尾加元素;
在队尾加元素的是add()方法;