关于单向链表的反转

题目:实现单向链表的反转。

 

以下是我的代码。

 

思路一:新建链表,利用临时指针的偏移完成新链表的穿插。

 

#include <iostream>

using std::cout;

using std::endl;

 

struct node

{

   int val;

   node *next;

};

 

void Reverse(node * &root)

{

   node *cpy,*lst,*cur,*nxt,*head;

   lst = root;

   cur = root->next;  //指向链表的下一个节点

   head = root;

   head->next = NULL;

 

   while(cur != NULL)

   {

      nxt = cur->next;

      cpy = lst;

      lst = cur;

      cur = nxt;

      lst->next = cpy;

      /*cpy = cur;   

      cur = cur->next; //这是我自己的算法,就是新建一个链表,把原来的链表从头查到新链表的末尾,就连表往后移,新链表指针往前走

      cpy->next = head->next;

      head->next = cpy;*/     

   }

 

   //root = head  //这是我的算法最后的节点

   root = lst;

}

 

void Show(node *root)

{

   node *cur = root;

   while(cur != NULL)

   {

      cout << cur->val << " ";

      cur = cur->next;

   }

   cout << endl;

}

 

int  main(void)

{

   node *head,*tmp,*cur;

   head = new node;

   head->val = 2010;

   cur = head;

   for(int i = 0;i < 10; i++)

   {

      tmp = new node;

      tmp->val = i;

      tmp->next = NULL;

      cur->next = tmp;

      cur = tmp;

   }

 

   Show(head);

   Reverse(head);

   Show(head);

   return 0;

}

 思路二:利用栈的思想。将链表设计成栈,然后创建新的链表将Pop的结果穿插成新的链表。

代码略。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值