码迷,mamicode.com
首页 > 其他好文 > 详细

链表逆序

时间:2017-05-08 21:53:45      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:nod   head   while   next   highlight   arp   ret   ext   har   

private void ListResverse(ListNode head)
{
  ListNode cur,next;
  if(head == null||head.next == null)
    return;
  cur = head.next;
  while(cur.next!=null)
  {
    next = cur.next;
    cur.next = next.next;
    next.next = cur;
    head.next = next;
  }
}

  

链表逆序

标签:nod   head   while   next   highlight   arp   ret   ext   har   

原文地址:http://www.cnblogs.com/binglangwu/p/6827770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!