[leetcode 체인 시계] 반전 체인 시계

1423 단어 LeetCode
단일 체인 테이블을 반전합니다.
예:
 : 1->2->3->4->5->NULL
 : 5->4->3->2->1->NULL

진급: 체인 시계를 교체하거나 귀속적으로 반전할 수 있습니다.너는 두 가지 방법으로 이 문제를 해결할 수 있니?
 
비귀속 실현:
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode reversedHead = null;
        ListNode temp = head;
        ListNode pre = null;
        
        while(temp!=null) {
            ListNode next = temp.next;
            if(next==null) {
                // 
                reversedHead = temp;
            }
            
            temp.next = pre;
            pre = temp;
            temp = next;
            
        }
        
        return reversedHead;

    }
}

반복 구현:
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode reverseList(ListNode head) {
        
        if(head ==null || head.next ==null) {
            return head;
        }
        
        ListNode node = reverseList(head.next);
        head.next.next = head;
        head.next = null;
        return node;        

    }
}

좋은 웹페이지 즐겨찾기