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

面试题24:反转链表

时间:2018-12-30 02:43:09      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:node   href   struct   ret   new   color   int   class   function   

NowCoder

<?php
header("content-type:text/html;charset=utf-8");
/*
 * 输入一个链表,反转链表后,输出新链表的表头。P142
 */

class ListNode{
    var $val;
    var $next = NULL;
    function __construct($x){
        $this->val = $x;
    }
}
function ReverseList($pHead)
{
    if($pHead == null || $pHead->next == null){
        return $pHead;
    }
    $cur = $pHead;
    $pre = null;
    $next = null;
    while ($cur != null){
        $next = $cur->next;
        $cur->next = $pre;
        $pre = $cur;
        $cur = $next;
    }
    return $pre;   //注意这里返回的是pre,不是pHead !!!!!!
}

$pHead = new ListNode(1);
$pHead->next = new ListNode(2);
$pHead->next->next = new ListNode(3);
$pHead->next->next->next = new ListNode(4);
$pHead->next->next->next->next = new ListNode(5);
print_r($pHead);
echo "</br>";
print_r(ReverseList($pHead));

 

面试题24:反转链表

标签:node   href   struct   ret   new   color   int   class   function   

原文地址:https://www.cnblogs.com/xlzfdddd/p/10198328.html

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