首页 > 编程语言 > 详细

每日LeetCode - 21. 合并两个有序链表(C语言)

时间:2021-05-08 23:06:26      阅读:20      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

C语言

C语言和Python的方法是一样的,所以就C语言了,效率上快很多。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
#define NULL ((void *)0)

struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2){
    if (l1 == NULL)
        return l2;
    if (l2 == NULL)
        return l1;
    if (l1->val > l2->val){
        l2->next=mergeTwoLists(l1,l2->next);
        return l2;
    }
    else{
        l1->next=mergeTwoLists(l2,l1->next);
        return l1;
    }
}

每日LeetCode - 21. 合并两个有序链表(C语言)

原文:https://www.cnblogs.com/vicky2021/p/14746110.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!