題目描述
輸入乙個鍊錶,輸出該鍊錶中倒數第k個結點。
思路一:
設定兩個指標pre和last,先讓pre移動k-1步,如果此時pre為空,則k>鍊錶長度,返回null,否則讓pre和last同時移動。步驟為:
①pre=pre.next;
②if(pre==null),若為真,進入④,否則進入③;
③last=last.next,進入①;
④return last.
**:
/*
public
class listnode
}*/public
class solution
pre = pre.next;
while(pre!=null)
last = last.next;
pre = pre.next;
}return last;
}}
思路二:
先遍歷一次鍊錶得到長度n,則第n-k個節點為目標節點,進行第二次遍歷。
**:
/*
public class listnode
}*/public
class solution
if(k>length)
return
null;
for(int i=0;ireturn head;
}}
鍊錶中倒數第k個結點
題目描述 輸入乙個鍊錶,輸出該鍊錶中倒數第k個結點。輸入 輸入可能包含多個測試樣例,輸入以eof結束。對於每個測試案例,輸入的第一行為兩個整數n和k 0 n k 1000 n代表將要輸入的鍊錶元素的個數,k代表要查詢倒數第幾個的元素。輸入的第二行包括n個數t 1 t 1000000 代表鍊錶中的元素...
鍊錶中倒數第k個結點
題目 輸入乙個鍊錶,輸出該鍊錶中倒數第k個結點。分析 對於此題,考慮單鏈表實現,單鏈表只能從頭到尾遍歷,而要找到倒數第k個結點,就需要確定,正數是第幾個結點,假設結點總數為n,最後乙個結點位置為n 1,而倒數第k個結點的位置就為n k 1,如果從頭節點開始遍歷,只要遍歷到n k 1步就可以,這就意味...
鍊錶中倒數第K個結點
輸入乙個鍊錶,輸出該鍊錶中倒數第k個結點。k 1,2.如 鍊錶1 2 3 4 5 6.倒數第3個節點為4。include iostream using namespace std struct listnode 遍歷兩次 listnode findkthtotail0 listnode plisth...