队列: 先进先出,限定插入只在表的一端(对尾)进行,删除在表的另一端(对头)进行 LinkedList实现队列,入列(LinkedList.addLast()),出列(LinkedList.removeFirst)