鏈表的逆序實現

來源:互聯網
上載者:User

題目:輸入一個鏈表的頭結點,反轉該鏈表。鏈表結點定義如下:

struct ListNode
{
      void*       m_nKey;
      ListNode* m_pNext;
};

常規實現,需要兩個臨時節點:

 ListNode* ReverseIteratively(ListNode* pHead)
{
      ListNode* pReversedHead = NULL;
      ListNode* pNode = pHead;
      ListNode* pPrev = NULL;
      while(pNode != NULL)
      {
            // get the next node, and save it at pNext
            ListNode* pNext = pNode->m_pNext;

            // if the next node is null, the currect is the end of original
            // list, and it's the head of the reversed list
            if(pNext == NULL)
                  pReversedHead = pNode;

            // reverse the linkage between nodes
            pNode->m_pNext = pPrev;

            // move forward on the the list
            pPrev = pNode;
            pNode = pNext;
   }

 

遞迴實現(不需要臨時節點):

ListNode* reverse_list( ListNode* head)       //逆序
{
  ListNode* new_head=head;
 if(head==NULL || head->next==NULL)
  return head;
 new_head = reverse_list(head->next);
 head->next->next=head;
 head->next=NULL; //防止鏈表成為一個環,這是最關鍵的。
 return new_head; 
}

 

以上代碼都經過測試。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.