您好,登錄后才能下訂單哦!
21. Merge Two Sorted Lists
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; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { ListNode * newListHead,* newListNode,*newListTail; newListHead = (ListNode *)malloc(sizeof(ListNode)); newListTail = newListHead; while( (NULL != l1) && (NULL != l2) ) { if(l1->val <= l2->val) { newListNode = (ListNode *)malloc(sizeof(ListNode)); newListNode->val = l1->val; newListTail->next = newListNode; newListTail = newListNode; l1 = l1->next; } else { newListNode = (ListNode *)malloc(sizeof(ListNode)); newListNode->val = l2->val; newListTail->next = newListNode; newListTail = newListNode; l2 = l2->next; } } if(NULL != l1) { while(l1) { newListNode = (ListNode *)malloc(sizeof(ListNode)); newListNode->val = l1->val; newListTail->next = newListNode; newListTail = newListNode; l1 = l1->next; } } if(NULL != l2) { while(l2) { newListNode = (ListNode *)malloc(sizeof(ListNode)); newListNode->val = l2->val; newListTail->next = newListNode; newListTail = newListNode; l2 = l2->next; } } newListTail->next = NULL; return newListHead->next; } };
2016-08-06 01:40:31
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。