[LeetCode]61.Rotate List

【題目】 Given a list, rotate the list to the right bykplaces, wherekis non-negative. For example: Given1->2->3->4->5->NULLandk=2, return4->5->1->2->3->NULL. 【題意】 給定一個鏈表,向右旋轉k個位置,其中k是非負的。 【分析】 先遍歷一遍,得出鏈表長
相關文章
相關標籤/搜索