2020年9月22日 星期二

[LeetCode] 234. Palindrome Linked List* 解題思路 (Easy)



這題是要判斷這個 LinkedList 是否是回文。




LeetCode 題目連結

 

https://leetcode.com/problems/palindrome-linked-list/

題目


Given a singly linked list, determine if it is a palindrome.

Example 1:

Input: 1->2
Output: false

Example 2:

Input: 1->2->2->1
Output: true

Follow up: Could you do it in O(n) time and O(1) space?

 

Accept 作法

利用 fast 走兩格, slow 走一個的方式,最終 slow 會走到 LinkedList 的一半,然後在往後做翻轉,去比對 head ,如果相同就是回文。

Runtime: 1 ms
Memory: 41.9 MB

Java 程式碼

  1. class Solution {
  2. public boolean isPalindrome(ListNode head) {
  3. if(head == null || head.next == null){
  4. return true;
  5. }
  6. ListNode slow = head;
  7. ListNode fast = head;
  8. while(fast != null && fast.next != null){
  9. fast = fast.next.next;
  10. slow = slow.next;
  11. }
  12. if(fast != null){
  13. slow = slow.next;
  14. }
  15. slow = reverse(slow);
  16. while (slow != null) {
  17. if (head.val != slow.val)
  18. return false;
  19. head = head.next;
  20. slow = slow.next;
  21. }
  22. return true;
  23. }
  24. public ListNode reverse(ListNode head) {
  25. ListNode prev = null;
  26. while (head != null) {
  27. ListNode next = head.next;
  28. head.next = prev;
  29. prev = head;
  30. head = next;
  31. }
  32. return prev;
  33. }
  34. }

更多 LeetCode 相關資源

 

複習程式面試書籍


除了 LeetCode 練習外,我也入手了這本,題庫來自真正的面試,並非摘自教科書。它們反映出頂尖公司真正會出的題目,你可以藉此做好充分準備
需要的話可以看看,寫得很仔細。


 

書名:提升程式設計師的面試力:189道面試題目與解答

 


 

相關 LeetCode文章一律會放在 程式解題 標籤分類,歡迎持續追蹤。


沒有留言:

張貼留言