[Leet Code21] [Merge Two Sorted Lists] 순차적 실현

1429 단어 leetcode

제목 원문:


Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

제목 이해:


제목은 두 개의 정렬된list를 새로운 정렬된list로 합쳐서 되돌려준다는 뜻이다.예를 들어 input:[1,3,5][2,4];output:[1,2,3,4,5].

코드:


java 컴파일링 구현 코드:
실현 사고방식: 매번 두 노드 중 값이 비교적 작은 노드를 되돌려주고, 그 노드가 null일 때까지 마지막 가장 큰 노드를 되돌려줍니다.
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if(l1==null){
            return l2;
        }
        if(l2==null){
            return l1;
        }
        ListNode mergeNode;
        if(l1.valelse{
            mergeNode = l2;
            mergeNode.next = mergeTwoLists(l1,l2.next);
        }
        return mergeNode;        
    }

좋은 웹페이지 즐겨찾기