0 Star 0 Fork 0

zhyuey/CTCI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2_2.cpp 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhyuey 提交于 2014-07-22 19:00 . add 2_2 and 2_3, update LinkList
#include "stdafx.h"
#include "LinkList.h"
#ifdef RUN_2_2
Node* findKthNode(LinkList ll, int k)
{
if(!ll.head)
return NULL;
if(k <= 0)
return NULL;
int count = 1;
Node* fastpt = ll.head;
Node* slowpt = ll.head;
while(count < k)
{
if(fastpt->next)
{
fastpt = fastpt->next;
count++;
}
else
{
return NULL;
}
}
while(fastpt->next)
{
fastpt = fastpt->next;
slowpt = slowpt ->next;
}
return slowpt;
}
int main()
{
LinkList ll;
ll.appendToTail(1);
ll.appendToTail(1);
ll.appendToTail(2);
ll.appendToTail(4);
ll.appendToTail(3);
ll.appendToTail(3);
ll.appendToTail(3);
ll.appendToTail(4);
ll.print();
std::cout << "The Kth Node:" << std::endl;
Node* rt = findKthNode(ll, -1);
if(rt)
std::cout << rt->data << std::endl;
else
std::cout << "No Node" << std::endl;
getchar();
}
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zhyuey/CTCI.git
git@gitee.com:zhyuey/CTCI.git
zhyuey
CTCI
CTCI
master

搜索帮助