您好,登錄后才能下訂單哦!
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題要保存新鏈表頭,中間節點head負責遍歷 struct ListNode* head; struct ListNode* ret; //找到新鏈表的頭 if(l1->val<l2->val){ head=l1; l1=l1->next; }else{ head=l2; l2=l2->next; } ret=head; //負責遍歷。哪個小就指向哪個,直到有一個遍歷完 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; }
。。。。。。。。。。。。。。。。太笨了。。。。。。。。。。。。。。。。繼續練習吧少年。。。。。。。。。。。。。。。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。