public class LinkedList implements Iterable{ private Node head; private Node tail; public LinkedList() { head=new Node