I'm having seriously difficulty getting a deep copy of a int array ( int [ ] [ ] ) into a linked list.<BR><BR>I tried .clone() but it gives a shallow copy <BR><BR ...
First of all, several of the other answers are misleading and/or incorrect. Note that an array is an object. So you can use them as elements in a list, no matter whether the arrays themselves contain ...