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

面试题22:链表中倒数第 K 个结点

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

标签:tpi   链表   struct   html   ranking   www.   print   amp   倒数   

NowCoder

<?php
header("content-type:text/html;charset=utf-8");
/*
 * 输入一个链表,输出该链表中倒数第k个结点。 P134
 */
class ListNode{
    var $val;
    var $next = NULL;
    function __construct($x){
        $this->val = $x;
    }
}
function FindKthToTail($head, $k)
{
    if($head == null || $k ==0){
        return null;
    }
    $count = 0;
    $cur = $head;
    while ($cur != null){
        $cur = $cur->next;
        $count++;
    }
    if($count < $k){
        return null;
    }
    for($i = 1;$i<=$count-$k;$i++){
        $head = $head->next;
    }
    return $head;
}

$head = new ListNode(1);
$head->next = new ListNode(2);
$head->next->next = new ListNode(3);
$head->next->next->next = new ListNode(4);
$head->next->next->next->next = new ListNode(5);
print_r(FindKthToTail($head,0));

 

面试题22:链表中倒数第 K 个结点

标签:tpi   链表   struct   html   ranking   www.   print   amp   倒数   

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

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