编写一子程序,将一链表倒序,即使链表表尾变表头,表头变表尾。

匿名网友 匿名网友 发布于: 2015-08-30 00:00:00
阅读 121 收藏 0 点赞 0 评论 0

解:   struct example *reverse(head)
struct example  *head;
{
  struct example p1,p2;
  p1=(struct example *)malloc(size);
  p1->key=head->key;
  p1->next=NULL;
  while(head->next!=NULL)
  {
    p2=head->next;
    head->next=(head->next)->next;
    p2->next=p1->next;
    p1->next=p2;
   }
   head=p1;
  return(head);
}

评论列表
文章目录