zoukankan      html  css  js  c++  java
  • [LeetCode] 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.

    水题,注意 dummy node 的使用即可,在不确定头节点的情况下,应该使用 dummy node,如此可以简化程序。以本题为例,鉴于两个输入链表可能为空,我们采用 dummy 节点,使得 dummyHead->next 指向新链表的第一个节点。

    以下为 AC 的代码:

    /**
     * Author : Acjx
     * Email  : zhoujx0219@163.com
     */
    
    /**
     * 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 *dummyHead = new ListNode(0);
            ListNode *cur = dummyHead;
            while (l1 != NULL && l2 != NULL)
            {
                if (l1->val < l2->val)
                {
                    cur->next = l1;
                    l1 = l1->next;
                }
                else
                {
                    cur->next = l2;
                    l2 = l2->next;
                }
                
                cur = cur->next;
            }
            
            if (l1 != NULL)
            {
                cur->next = l1;
            }
            
            if (l2 != NULL)
            {
                cur->next = l2;
            }
            
            return dummyHead->next;
        }
    };
  • 相关阅读:
    方法的参数传递机制
    策略模式
    Factory(简单的工厂模式)
    java 跨域问题解决
    Map 转成Json字符串
    FastDFS 上传,删除文件
    MD5 密码加盐
    Java-图片压缩
    调用支付宝人脸采集查询图片Base64解码
    HttpClient工具类
  • 原文地址:https://www.cnblogs.com/jianxinzhou/p/4311373.html
Copyright © 2011-2022 走看看