I've been having quite a bit of trouble trying to make a deep copy of a doubly linked list in my java program.
My method thus far is:
public class DblLinkQueue implements Queue {
public Object clone() {
DblLinkQueue copy = null;
Node currNode, tmp = null;
try {
copy = (DblLinkQueue)super.clone();
} catch (CloneNotSupportedException err) {}
for (currNode = mHead.next; currNode.next != mHead; currNode = currNode.next) {
}
System.out.println("i: " + i);
return copy;
}
}
mHead is the first Node in my list, and this linked list is also circular.
Something is wrong with my for loop because it goes through all the elements in the list, then gets stuck on the last element infinitely.
Any help would be appreciated!