溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

LeetCode021 Merge Two Sorted Listss C語言

發(fā)布時間:2020-07-09 09:41:03 來源:網(wǎng)絡(luò) 閱讀:609 作者:努力的C 欄目:編程語言
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.

題意:合并兩個有序單鏈表,合并后的仍然是有序的。。。。。。。。。。。。。。。。。。。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
    //首先判斷有沒有空鏈表的情況。。。。。
    if(l1 && !l2)
    return l1;
    if(!l1 && l2)
    return l2;
    if(!l1 && !l2)
    return NULL;
    //還是和之前的002題要保存新鏈表頭,中間節(jié)點head負(fù)責(zé)遍歷
    struct ListNode* head;
    struct ListNode* ret;
    //找到新鏈表的頭
    if(l1->val<l2->val){
        head=l1;
        l1=l1->next;
    }else{
        head=l2;
        l2=l2->next;
    }
    ret=head;
    //負(fù)責(zé)遍歷。哪個小就指向哪個,直到有一個遍歷完
    while(l1&&l2){
        if(l1->val<l2->val){
            head->next=l1;
            l1=l1->next;
        }else{
            head->next=l2;
            l2=l2->next;
        }
        head=head->next;
    }
    //遍歷完后看看誰還剩下直接指向剩下的部分
    if(l1){
        head->next=l1;
    }
    if(l2){
        head->next=l2;
    }
    return ret;
    }

。。。。。。。。。。。。。。。。太笨了。。。。。。。。。。。。。。。。繼續(xù)練習(xí)吧少年。。。。。。。。。。。。。。。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI