(java)leetcode-24

1320 단어 leetcode
Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.
For example, Given 1->2->3->4 , you should return the list as 2->1->4->3 .
Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.
문제 풀이 방향:
바로 인접 한 두 노드 의 next 를 끊임없이 교환 하고 끝 날 때 까지 계속 순환 하 는 것 입 니 다. 기억 하 는 것 은 현재 두 노드 의 next (예 를 들 어 k 와 k + 1) 를 교환 할 때 k - 1 의 next 를 업데이트 하 는 것 입 니 다.
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode swapPairs(ListNode head) {
        if(head == null || head.next == null)
        	return head;
        //    k
        ListNode p = head;
        //    k+1
        ListNode q = head.next;
        //      k-1
        ListNode r = null;
        head = q;
        while(p != null && q != null)
        {
            //  next
        	p.next = q.next;
        	q.next = p;
        	//       next
        	if(r != null)
        		r.next = q;
        	//    
        	r = p;
        	p = p.next;
        	if(p != null)
        		q = p.next;
        }
        return head;
    }
}

좋은 웹페이지 즐겨찾기