21. Merge Two Sorted Lists【合并两个有序链表】

在这里插入图片描述
Refer: https://leetcode-cn.com/problems/merge-two-sorted-lists/solution/he-bing-liang-ge-you-xu-lian-biao-by-leetcode

 public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
          if (l1 == null) {
             return l2;
          }
          else if (l2 == null) {
             return l1;
          } else if (l1.val < l2.val) {
             l1.next = mergeTwoLists(l1.next, l2);
             return l1;
          } else {
             l2.next = mergeTwoLists(l1, l2.next);
             return l2;
          }
      }
发布了64 篇原创文章 · 获赞 1 · 访问量 2762

猜你喜欢

转载自blog.csdn.net/A_bad_horse/article/details/97623239
今日推荐