static L fromSimplyLinkedList(SimplyLinkedList sll) { new L l; while (sll != null) { l.add(sll.head); sll = sll.tail; } ret l; }