hi.......can anyone explain this code with a good example and how the
recursion takes place in function call stack??

public void reverse(Stack st)
{
int m = (int)st.Pop();
if (st.Count != 1)
   reverse(st);
Push(st , m);
}

public void Push(Stack st , int a)
{
int m = (int)st.Pop();
if (st.Count != 0)
   Push(st , a);
else
   st.Push(a);
st.Push(m);
}



-- 
Regards,
$iva

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to