public void reverse(Node head){
if(head == null)
return;
reverse(head.next);
show(head.data);
}
Menu bar
Thursday, August 21, 2014
Single Linked List Reverse
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment