查找单链表中倒数第n个节点

http://www.nowamagic.net/librarys/veda/detail/496

通过一次遍历找到单链表中倒数第n个节点,链表可能相当大,可使用辅助空间,但是辅助空间的数目必须固定,不能和n有关。

单向链表的特点是遍历到末尾后不能反向重数N个节点。因此必须在到达尾部的同时找到倒数第N个节点。

不管是顺数n个还是倒数n个,其实都是距离-标尺问题。标尺是一段距离可以用线段的两个端点来衡量,我们能够判断倒数第一个节点,因为他的next==NULL。如果我们用两个指针,并保持他们的距离为n,那么当这个线段的右端指向末尾节点时,左端节点就指向倒数第n个节点。


iNode * GetLastNnode(iNode * head, int n)
{
	iNode * pfirst=head;
	iNode *psecond=head;
       
	int counter;
    //第1步:建立标尺,移动pfirst N步
	for(counter=0; counter<n; counter++) 
    {
    	if((NULL == pfirst)
      	break; // 此时pfirst->next无意义
      	pfirst=pfirst->next;
	}
       
 	if(n != counter) //长度不够n,未找到倒数第n个节点
    	return NULL;
 
	//第2步:保持距离让标尺向右移动,直到右端指向末尾,左端即结果
	while(pfirst!=NULL) 
    {
		pfirst=pfirst->next;
   		psecond=psecond->next;
	}
 	return psecond;
}
 
 
iNode * GetLastNnode ( iNode *head, int n)
{
    iNode * pfirst = head;
    iNode * psecond = NULL;//可能没有n个
    while( n-- > 0 && (pfirst!= NULL)
    {
        pfirst = pfirst ->next;
	}
 
    if(pfirst!= NULL)// 有n个节点
        psecond = head;
 
    while(pfirst!=NULL)
    {
         pfirst = pfirst ->next;
         psecond = psecond ->next;
    }
    return psecond; //只有一个出口,无论是否有n个节点,都能返回正确值
}


和上面的思路类似,设置2个指针,一个走2步时,另一个走1步。那么一个走到头时,另一个走到中间。一次遍历单向链表找到中间节点
iNode * GetMiddleNode ( iNode *head )
{
    iNode *p1 = head;
    iNode *p2 = p1;
    while( p2 )
    {
        p2 = p2->next;
        if(p2)
        {
            p2 = p2->next;
            p1=p1->next;
        }
    }
    return p1;
}


#include <iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;

struct  node
{
    int date;
    node *next;
};

node *createLinkList()
{
     node *head,*p;
     int x;
     head = (node *)malloc(sizeof(node));
     head->next = NULL;
     scanf("%d",&x);
     while(x!=0)
     {
         p = (node *)malloc(sizeof(node));
         p->date = x;
         p->next = head->next;
         head->next = p;
         scanf("%d",&x);
     }
     return head;
}

void printLinkList(node *head)
{
    node *p = head->next;
    while(p!=NULL)
    {
        printf("%d  ",p->date);
        p = p->next;
    }
}

node *getLastNode(node *head,int n)
{
    node *first = head;
    node *second = head;
    int counter = 0;
    for(;counter<n;counter++)
    {
        if(first==NULL)
        {
            printf("链表长度不足");
            //竟然会报错 如果return;
            return NULL;
        }
        first = first->next;
    }

    while(first!=NULL)
    {
        first = first->next;
        second = second->next;
    }
    return second;
}

node *getMiddleNode(node *head)
{
    node *p1 = head->next;
    node *p2 = head->next;
    while(p1)
    {
        p1 = p1->next;
        if(p1)
        {
            p1 = p1->next;
            p2 = p2->next;
        }
    }
    return p2;

}

int main()
{
    node *head = createLinkList();
    printLinkList(head);
    int num;
    scanf("%d",&num);
    node *result = getLastNode(head,num);
    printf("%d\n",result->date);
    node *middle = getMiddleNode(head);
    printf("%d\n",middle->date);
    return 0;
}


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值