LinkedList实现:package cn.meowrain.Datastructure.collection;public class LinkedList<E> { //链表的头结点,用于连接之后的所有结点 private final Node<E> he