temp=head;
temp1=temp->fwd;
while(temp->fwd!=NULL)
{
    temp2=temp;
    while(temp2->down!=NULL)
    temp2=temp2->link;
    temp2->down=temp1;
    temp->fwd=NULL;
    temp=temp1;
    temp1=temp1->fwd;
}

U can print the linked list using down pointer.Hope this will
work.Correct me if I m wrong.

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

Reply via email to