Reverse Linked List II
摘要:
Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL.No... 阅读全文
posted @ 2015-01-05 14:54 luckygxf 阅读(131) 评论(0) 推荐(0) 编辑