博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
链表中倒数第k个节点
阅读量:5112 次
发布时间:2019-06-13

本文共 723 字,大约阅读时间需要 2 分钟。

题目:

输入一个链表,输出该链表倒数第k个节点。

 

 

解答:

1 public class Solution { 2  3     public static ListNode findKthToTail(ListNode pHead, int k) { 4         if(pHead == null || k == 0) { 5             return null; 6         } 7  8         ListNode pAhead = pHead; 9         ListNode pBehind = null;10         for(int i = 0; i < k; i++) {11             if(pAhead.next != null) {12                 pAhead = pAhead.next;13             } else {14                 return null;15             }16         }17 18         pBehind = pHead;19         while(pAhead.next != null) {20             pAhead = pAhead.next;21             pBehind = pHead.next;22         }23 24         return pBehind;25     }26 }

 

转载于:https://www.cnblogs.com/wylwyl/p/10465779.html

你可能感兴趣的文章
GreenDao数据库的简单使用
查看>>
Starting cloudera-scm-server: * Couldn't start cloudera-scm-server的解决办法(图文详解)
查看>>
Hadoop的ChainMapper和ChainReducer使用案例(链式处理)(四)
查看>>
linux 强制删除yum安装的php7.2
查看>>
uiautomator_python使用汇总
查看>>
tomcat cluster session同步时保存map数据遇到的问题
查看>>
Javascript备忘录-枚举一个对象的所有属
查看>>
Asp.net MVC DefaultModelBinder分析
查看>>
KVM安装
查看>>
w3cschool -css
查看>>
《Entity Framework 6 Recipes》中文翻译系列 (10) -----第二章 实体数据建模基础之两实体间Is-a和Has-a关系建模、嵌入值映射 (转)...
查看>>
又是毕业季I
查看>>
涛涛的Party
查看>>
SQL Server 触发器
查看>>
Silverlight 5 系列学习之一
查看>>
最值栈
查看>>
EXTJS中文乱码
查看>>
POJ2226 Muddy Fields 二分匹配 最小顶点覆盖 好题
查看>>
POJ 2528 Mayor's posters 线段树+离散化
查看>>
将DataSet(DataTable)转换成JSON格式(生成JS文件存储)
查看>>