I have a recursive code that removes values from the set at every call. When it returns from the call to the previous recursion, I want that set to be replenished with exactly the same state it had before going into the call. So for eg in the code below:
// initial value of this list is [a,b,c]
void foo(ArrayList<Character> myList)
{
for(int i=0; i< size;i++)
{
myList.remove(i); // Now it becomes [b,c]
foo(myList);
/* QUESTION: at this point how do i retrieve the value [b,c] -- because it goes into successive recursive calls I'm unable to get this value back!!*/
}
}