美文网首页LintCode解题思路LintCode解题思路
OJ lintcode 合并两个排序链表

OJ lintcode 合并两个排序链表

作者: DayDayUpppppp | 来源:发表于2017-02-19 20:02 被阅读5次

    将两个排序链表合并为一个新的排序链表
    您在真实的面试中是否遇到过这个题?
    Yes
    样例
    给出 1->3->8->11->15->null,2->null, 返回 1->2->3->8->11->15->null。

    /**
     * Definition of ListNode
     * class ListNode {
     * public:
     *     int val;
     *     ListNode *next;
     *     ListNode(int val) {
     *         this->val = val;
     *         this->next = NULL;
     *     }
     * }
     */
    class Solution {
    public:
        /**
         * @param ListNode l1 is the head of the linked list
         * @param ListNode l2 is the head of the linked list
         * @return: ListNode head of linked list
         */
        void insert(ListNode *head,ListNode *node){
            node->next=NULL;
            if(head->next==NULL){
                head->next=node;
                return ;
            }
            ListNode * pre=head;
            ListNode * p=head->next;
    
            while(p!=NULL){
                if(p->val>node->val){
                    node->next=p;
                    pre->next=node;
                    return ;
                }
                else{
                    p=p->next;
                    pre=pre->next;
                }
                
            }
            pre->next=node;
        }
    
        ListNode *mergeTwoLists(ListNode *l1, ListNode *l2) {
            // write your code here
            ListNode * newhead=new ListNode();
            ListNode * p=l1;
            ListNode * q=l2;
    
            while(p!=NULL){
                ListNode * node =p;
                p=p->next;
                insert(newhead,node);
            }
    
            while(q!=NULL){
                ListNode * node=q;
                q=q->next;
                insert(newhead,node);
            }
    
            return newhead->next;
        }
    };
    

    相关文章

      网友评论

        本文标题:OJ lintcode 合并两个排序链表

        本文链接:https://www.haomeiwen.com/subject/hfwjwttx.html