[cc150] check palindrome of a singly linked list

來源:互聯網
上載者:User

標籤:style   blog   http   java   color   width   

Problem: Implement a function to check if a singly linked list is a palindrome.

思路:

最簡單的方法是 Reverse and compare. 

另外一種非常經典的辦法是用 Recursive 的思路,把一個list看成這種形式:

0 ( 1 ( 2 ( 3 ) 2 ) 1 ) 0

0 ( 1 ( 2 ( 3 3 ) 2 ) 1 ) 0

CC150裡面給出的Code,非常簡潔,貼在下面:

length == 1 對應上面第一種情況

length == 2 對應上面第二種情況

其中用到了一個Wrapper class ‘Result‘, 因為Java不支援傳回值傳兩個變數。

class Result{  LinkedListNodde node;  boolean result;}

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.