首页 > 学院 > 开发设计 > 正文

重拾算法之剑指Offier——合并两个排序的链表

2019-11-08 02:39:00
字体:
来源:转载
供稿:网友

剑指Offier——合并两个排序的链表

题目描述 输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。

/*public class ListNode { int val; ListNode next = null; ListNode(int val) { this.val = val; }}*/public class Solution { public ListNode Merge(ListNode list1,ListNode list2) { if (list1 == null){ return list2; } else if (list2 == null){ return list1; } ListNode listNode = null; if(list1.val < list2.val){ listNode = list1; listNode.next = Merge(list1.next, list2); } else { listNode = list2; listNode.next = Merge(list1, list2.next); } return listNode; }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表