华为OJ(输出单链表倒数第K个节点)

可以有两种方法实现:

1 遍历链表,可以求出链表节点数N,然后走N-k步(OJ原题注明最后一个节点为倒数第0个节点,故需先走N-K步)

该方法比下面快慢指针复杂,实现起来也简单,以后有时间再补充。

2 快慢指针(剑指offer等书上应该都有,该方法同样可用于判断环形链表,ps:当时百度实习面试栽在这里了)

pBehind,pAhead初始化为head头指针,pAhead先走k步,当pAhead指向尾结点时,pBehind即为所求结点。

代码:

<span style="font-size:18px;">#include<iostream>
//#include<Windows.h>
using namespace std;
struct Node
{
	int data;
	struct Node* next;
};
int find_kth_data(Node*,int);
int main()
{
	Node * head,*p;	
	head=p=(Node*)malloc(sizeof(Node));
	int n;
	cin>>n;	
	cin>>p->data;
	p->next=NULL;
	for(int i=0;i<n-1;++i)
		{	
			p=p->next=(Node*)malloc(sizeof(Node));
			cin>>p->data;
			p->next=NULL;
		}	
	int k;
	cin>>k;		
	int kth_data=find_kth_data(head,k);
	cout<<kth_data<<endl;
	//system("pause");
	return 0;
}
int find_kth_data(Node* phead,int k)
{	
	if(k<0)
		return NULL;
	Node* pAhead,*pBehind;
	pAhead=pBehind=phead;
	if(k==0)
		while(pBehind->next)
			pBehind=pBehind->next;
	else
	{
		for(int i=0;i<k;++i)
		{
			pAhead=pAhead->next;		
		}
		while(pAhead->next)
		{
			pAhead=pAhead->next;
			pBehind=pBehind->next;		
		}
	}
	return pBehind->data;
}</span>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值