배울 구조 : ListIterator클래스 / next(), hasNext(), add(), remove() >>LinkedList.ListIterator 객체의 메소드의 자료구조>이터레이터에서 넥스트 넥스트 해가는 중에 add()로 객체를 추가할 수 있다. LinkedList.ListIterator i = numbers.listIterator(); i.add(5); 만약 위처럼 next()가 전혀 실행되지 않은 상황에서 add(Object)를 하게되면 LinkedList의 첫 번째 노드에 해당 객체를 저장하도록 하자. ListIterator()생성자 호출시 next=head;다. 또한 중간에 newNode가 들어갈 수도 있다. 그러면 lastReturned.next = newNode; 랑 newNode..