链表接口
public interface ILinkedList {
T getFirst();
T getLast();
T removeFirst();
T removeLast