---------- Forwarded message ----------
From: sukran dhawan <[email protected]>
Date: Sun, Sep 4, 2011 at 2:53 PM
Subject: Re: [algogeeks] Tejas networks
To: [email protected]
reverse a linked list
void reverse(struct node ** head)
{
struct node * last,*temp;
last = *head;
while(last->next != null)
last = last->next;
while(*head != last)
{
temp = *head;
*head = (*head)->next;
temp->next = last->next;
last->next = temp
}
}
On Sun, Sep 4, 2011 at 2:46 PM, Anup Ghatage <[email protected]> wrote:
> Could you please give an example for question 3?
>
> --
> 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.
>
--
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.