阐述下,面试的时候觉得题目有歧义或者不懂意思的时候,一定不能直接敲,而是向面试官问清楚题目,这是很必要的,面试官会从细节里发现你的优点;
对于本题,要注意这样几点:
1、理解:最后一个结点,其实是倒数第一个结点。(而不是倒是第0个结点)即k==0
2、特别注意链表为空的情况(即:pListHead==NULL)
3、k>链表长度
思路:用两个指针来遍历这个链表;这两个指针之间的差是k-1这样就保证当前面的指针到达链表结尾的时候,后面的结点正好到达倒数第k个位置;
xiao~k写了几题链表之后,马上要进行下一步复习了。
#include<stdio.h> #include<iostream> using namespace std; struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x),next(NULL) {} }; class Solution { public: ListNode* FindKthToTail(ListNode* pListHead, unsigned int k) { ListNode *p,*q; if(!pListHead || !k) return NULL; p=pListHead; q=p; int cnt=0; while(p) { cnt++; p=p->next; if(cnt>k) { q=q->next; } } if(cnt<k) return NULL; else return q; } ListNode* CreatList(ListNode *pHead,int n) { if(n==0) return NULL; ListNode *p,*q; pHead=new ListNode(NULL); p=pHead; cin>>p->val; int x; while(--n) { cin>>x; q=new ListNode(x); p->next=q; p=q; } return pHead; } }; int main() { int n,k; Solution so; ListNode *L; cin>>n; L=so.CreatList(L,n); cin>>k; ListNode *ans=so.FindKthToTail(L,k); if(ans) printf("%d\n",ans->val); return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/u010579068/article/details/48272185