/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode Merge(ListNode list1,ListNode list2) {
//1-->3-->6
//2-->4-->5
//链表list1,list2.判断1和2的头节点val哪个大。
if(list1 == null) return list2;
if(list2 == null) return list1;
ListNode head = null;
if(list1.val <= list2.val){
head = list1;
head.next = Merge(list1.next,list2);
}else{
head = list2;
head.next = Merge(list1,list2.next);
}
return head;
}
}
本文介绍了一种用于合并两个有序链表的算法实现。通过递归方式比较两个链表的节点值,将较小值节点作为新链表的一部分,并递归处理剩余部分,最终形成一个有序的合并链表。
172万+

被折叠的 条评论
为什么被折叠?



