如何使用遞迴和非遞迴方式反轉單向鏈表

來源:互聯網
上載者:User

以下是對使用遞迴和非遞迴方式反轉單向鏈表的樣本進行了詳細的分析介紹,需要的朋友可以過來參考下 

問題:
給一個單向鏈表,把它從頭到尾反轉過來。比如: a -> b -> c ->d 反過來就是 d -> c -> b -> a 。

分析:
假設每一個node的結構是:

複製代碼 代碼如下:
class Node {
 char value;
 Node next;
}


因 為在對鏈表進行反轉的時候,需要更新每一個node的“next”值,但是,在更新 next 的值前,我們需要儲存 next 的值,否則我們無法繼續。所以,我們需要兩個指標分別指向前一個節點和後一個節點,每次做完當前節點“next”值更新後,把兩個節點往下移,直到到達最 後節點。

代碼如下:

複製代碼 代碼如下:
public Node reverse(Node current) {
 //initialization
 Node previousNode = null;
 Node nextNode = null;

 while (current != null) {
  //save the next node
  nextNode = current.next;
  //update the value of "next"
  current.next = previousNode;
  //shift the pointers
  previousNode = current;
  current = nextNode;   
 }
 return previousNode;
}


上面代碼使用的是非遞迴方式,這個問題也可以通過遞迴的方式解決。代碼如下:

複製代碼 代碼如下:
public Node reverse(Node current)
 {
     if (current == null || current.next == null) return current;
     Node nextNode = current.next;
     current.next = null;
     Node reverseRest = reverse(nextNode);
     nextNode.next = current;
     return reverseRest;
 }


遞迴的方法其實是非常巧的,它利用遞迴走到鏈表的末端,然後再更新每一個node的next 值 (代碼倒數第二句)。 在上面的代碼中, reverseRest 的值沒有改變,為該鏈表的最後一個node,所以,反轉後,我們可以得到新鏈表的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.