單鏈表的反轉可以使用循環,也可以使用遞歸的方式
循環的方法中,使用pre指向前一個結點,cur指向當前結點,每次把cur->next指向pre即可。

代碼:
class ListNode: def __init__(self,x): self.val=x; self.next=None; def nonrecurse(head): #循環的方法反轉鏈表 if head is None or head.next is None: return head; pre=None; cur=head; h=head; while cur: h=cur; tmp=cur.next; cur.next=pre; pre=cur; cur=tmp; return h; head=ListNode(1); #測試代碼 p1=ListNode(2); #建立鏈表1->2->3->4->None; p2=ListNode(3); p3=ListNode(4); head.next=p1; p1.next=p2; p2.next=p3; p=nonrecurse(head); #輸出鏈表 4->3->2->1->None while p: print p.val; p=p.next;
結果:
4
3
2
1
>>>
class ListNode: def __init__(self,x): self.val=x; self.next=None; def recurse(head,newhead): #遞歸,head為原鏈表的頭結點,newhead為反轉后鏈表的頭結點 if head is None: return ; if head.next is None: newhead=head; else : newhead=recurse(head.next,newhead); head.next.next=head; head.next=None; return newhead; head=ListNode(1); #測試代碼 p1=ListNode(2); # 建立鏈表1->2->3->4->None p2=ListNode(3); p3=ListNode(4); head.next=p1; p1.next=p2; p2.next=p3; newhead=None; p=recurse(head,newhead); #輸出鏈表4->3->2->1->None while p: print p.val; p=p.next;
運行結果同上。
以上就是本文關于單鏈表反轉python/278901.html">python/204634.html">python/303708.html">python實現代碼示例的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!
新聞熱點
疑難解答