public LinkedList addList(LinkedList list) {
ListNode p = head;
if (head == null)
head = list.head;
else if (list.head == null) {
} else
p.link = null;
p = head;
while (p.link != null) {
p = p.link;
p.link = list.head;
}
return list;
}
링크드리스트 소스입니다.
다른 메소드는 모두 잘 되는데 여기서 문제인 것 같아요
컴파일은 문제가 안되는데 원하는 결과가 안 나오네요;;
여기서 문제가 어떤건지 알 수 있을까요?