模拟实现java集合类 LinkedList 及其主要方法get set remove size isEmpty contains
package com.qin.DataStructure;
public class LinkedList<E> {
private class Node{
public E e;
public Node next;
//构造函数
public Node(E e, Node next){
...




