您好,登錄后才能下訂單哦!
(1)遍歷兩遍,第一次計算出鏈表長度n,第二次找到(n-k)個節點,也就是倒數第K個節點。
(2)遍歷一遍,定義兩個指針,一個指針fast,一個指針slow,都指向頭結點,fast指針先向前走K,然后再同時遍歷,當fast遍歷到最后一個節點時,slow所指向的節點就是倒數第K個節點。
#include<stdio.h> #include<stdlib.h> #include<assert.h> struct Listnode { int _value; Listnode* _next; }; void Init(Listnode*& head) { Listnode* cur =head; if(cur==NULL) { cur=(Listnode*)malloc(sizeof(Listnode)); cur->_next=NULL; cur->_value=0; } head=cur; } void push(Listnode*& head,int value) { Listnode* cur =head; while(cur->_next) { cur=cur->_next; } Listnode* tmp=NULL; tmp=(Listnode*)malloc(sizeof(Listnode)); tmp->_next=NULL; tmp->_value=value; cur->_next=tmp; } void pop(Listnode* head) { Listnode* cur=head; Listnode* prev=NULL; while(cur->_next!=NULL) { prev=cur; cur=cur->_next; } prev->_next=NULL; free(cur); cur=NULL; } void print(Listnode* head) { Listnode* cur=head; while(cur) { printf("%d\n",cur->_value); cur=cur->_next; } } Listnode* Find(Listnode* head,int k) { assert(head); assert(k>0); Listnode* slow=head; Listnode* fast=head; while(k--) { fast=fast->_next; } while(fast) { slow=slow->_next; fast=fast->_next; } return slow; } void test() { Listnode* head=NULL; Init(head); push(head,1); push(head,2); push(head,3); /*pop(head);*/ print(head); Listnode* ret=Find(head,2); printf("倒數第K個數:%d\n",ret->_value); } int main() { test(); system("pause"); return 0; }
結果:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。