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

逆转单链表

时间:2018-01-20 12:41:18      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:ext   span   node   public   pre   stat   style   microsoft   div   

非递归实现逆转单链表,遍历单链表时,使用三个指针实现逆转:

public static Node reverseNode(Node node) {
if (null == node || null == node.next) {
return node;
}
Node pre = null;
Node cur = node;
Node next = null;
while (null != cur) {
next = cur.next;
cur.next = pre;
pre = cur;
cur = next;
}
return pre;
}

逆转单链表

标签:ext   span   node   public   pre   stat   style   microsoft   div   

原文地址:https://www.cnblogs.com/lizh0209/p/8320065.html

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