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

倒数第K个结点

时间:2019-09-16 21:14:46      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:col   ret   type   ext   while   lin   link   class   struct   

typedef  struct Lnode{
    int data;
    struct Lnode *next;
}Lnode,*Link; 
Link fi(Link head,int k){
    Link fa = head;
    Link sl = head;
    while(k>0&&fa!=null){
        fa = fa->next;
        k--;
    }
    if(k>0) //链表长度不足k
    else{
        while(fa!=null){
            fa = fa->next;
            sl = sl->next;
        }
        return sl;
    } 
}

 

倒数第K个结点

标签:col   ret   type   ext   while   lin   link   class   struct   

原文地址:https://www.cnblogs.com/tingtin/p/11529971.html

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