合并两个排序的链表

题目描述

输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;struct ListNode
{int val;struct ListNode *next;ListNode(int x):val(x),next(NULL){}
};class Solution
{
public:ListNode* Merge(ListNode* pHead1,ListNode* pHead2){if(pHead1==NULL)return pHead2;if(pHead2==NULL)return pHead1;ListNode* mergeHead=pHead1;if(pHead1->val<pHead2->val){mergeHead=pHead1;mergeHead->next=Merge(pHead1->next,pHead2);}else{mergeHead=pHead2;mergeHead->next=Merge(pHead1,pHead2->next);}return mergeHead;}
};int main()
{Solution s;int n;struct ListNode *mergeHead=NULL;struct ListNode *pHead1=NULL;struct ListNode *pHead2=NULL;struct ListNode *p=NULL,*p2=NULL,*x=NULL;scanf("%d",&n);pHead1=(struct ListNode*)malloc(sizeof(struct ListNode));p=(struct ListNode*)malloc(sizeof(struct ListNode));pHead2=(struct ListNode*)malloc(sizeof(struct ListNode));p2=(struct ListNode*)malloc(sizeof(struct ListNode));pHead1->next=p;for(int i=0;i<n;i++){scanf("%d",&p->val);p->next=(struct ListNode*)malloc(sizeof(struct ListNode));x=p;p=p->next;}x->next=NULL;p=pHead1->next;pHead2->next=p2;for(int i=0;i<n;i++){scanf("%d",&p2->val);p2->next=(struct ListNode*)malloc(sizeof(struct ListNode));x=p2;p2=p2->next;}x->next=NULL;p2=pHead2->next;mergeHead=s.Merge(p,p2);while(mergeHead!=NULL){printf("%d",mergeHead->val);mergeHead=mergeHead->next;}return 0;
}

 

转载于:https://www.cnblogs.com/dshn/p/8873178.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/414245.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Beyond Compare4.07过期,报错This license key has been revoked:

在C盘用户文件夹下搜索 Scooter Software 文件夹 我的在C:\Users{user}\AppData\Roaming\Scooter Software\下 进入当前目录的Beyond Compare 4 里面的文件重命名就可以了 转自这里

npm install引起的项目崩溃(This is probably not a problem with npm,there is likely additional logging outp)

报错This is probably not a problem with npm. There is likely additional logging output above. 参照一篇文章&#xff0c;windows下使用命令删除 node_modules 用到 rimraf&#xff0c;因此需要先安装 npm 包&#xff08;全局安装&#xff09; npm install rimraf -g 1 …

分布式session共享

一、前言 为什么会出现session共享问题&#xff1f; 客户端与服务器交互时会产生唯一的sessionid用于标记用户&#xff0c;但是在分布式架构中&#xff0c;如果还是采用 session 的方式&#xff0c;用户发起请求&#xff0c;通过 nginx 做请求转发时&#xff0c;并不知道是转发…

InnoDB锁问题

InnoDB锁问题 InnoDB与MyISAM的最大不同有两点&#xff1a;一是支持事务&#xff08;TRANSACTION&#xff09;&#xff1b;二是采用了行级锁。行级锁与表级锁本来就有许多不同之处&#xff0c;另外&#xff0c;事务的引入也带来了一些新问题。下面我们先介绍一点背景知识&#…

phpsduty环境下,使用composer安装报错

1.首先要下载composer进行安装 点击下载 &#xff0c;最新的composer要求的php版本都比较高&#xff0c;安装之后&#xff0c;将composer的安装路径加入环境变量&#xff0c;我的参考路径&#xff1a;D:\composer&#xff1b; 2.我的环境使用的php版本是php7.0.12-nts&#xf…

SPU、SKU、ARPU

在涂涂商城开发之前&#xff0c;发现一篇关于电商中 SPU、SKU、ARPU 的介绍&#xff0c;转至博客&#xff0c;原文地址&#xff1a;http://www.ikent.me/blog/3017 什么是SPU、SKU、ARPU 首先&#xff0c;搞清楚商品与单品的区别。例如&#xff0c;iphone 是一个单品&#xff0…

NOIP2011提高组day2

NOIP 2011 提高组 Day 2 T1 &#xff1a; 题意&#xff1a; 这道题题意很显然&#xff0c;方法就是利用数学中的二项式定理 &#xff1a; ( x y ) ^ n C ( i , n ) * x ^ i * y ^ ( n - i )&#xff0c;i ∈ [ 0 , n ]&#xff0c;所以求x ^ n * y ^ m的系数&#xff0c;就是…

react+redux+node报错Tapable.plugin is deprecated. Use new API on `.h ooks` instead

npm run hot运行 报错(node:5372) DeprecationWarning: Tapable.plugin is deprecated. Use new API on .h ooks instead 原因是内网的IP变了&#xff0c;所以启动报错&#xff0c;修改webpack.dev.js里的host&#xff0c;解决。

什么是单点登录

前言&#xff1a; 是时候了解一下SSO相关的知识了&#xff0c;本篇主要是概念篇&#xff0c;发现网上两篇不错的文章&#xff0c;简单整合了一下&#xff0c;原文链接&#xff1a;https://www.cnblogs.com/Java3y/p/10877465.htmlhttps://www.cnblogs.com/EzrealLiu/p/5559255.…

编译原理预测分析程序

直接上代码&#xff1a; 1 #include<cstdio>2 #include<iostream>3 #include<map>4 #include<vector>5 #include<string>6 #include<set>7 #include<stack>8 #include<algorithm>9 #include<Windows.h>10 using namespa…

支付宝H5支付,ISV权限不足

报错如下&#xff1a; 登录支付宝商户平台&#xff0c;发现签约产品已失效&#xff1a; 重新申请&#xff0c;修改网址之后就成功了&#xff1a;

我们为何需要单点登录系统

SSO&#xff0c;Single Sign On&#xff0c;也就是单点登录&#xff0c;保证一个账户在多个系统上实现单一用户的登录 现在随着网站的壮大&#xff0c;很多服务会进行拆分&#xff0c;会做SOA服务&#xff0c;会使用dubbo做微服务&#xff0c;或者简单的小型分布式&#xff0c…

ALGO-123_蓝桥杯_算法训练_A+B problem

问题描述Given two integers A and B, your task is to output their sum, AB. 输入格式The input contains of only one line, consisting of two integers A and B. (0 ≤ A,B ≤ 1 000) 输出格式The output should contain only one number that is AB. 样例输入 1 1 样例输…

微信JSAPI支付,报错当前页面的URL未注册

调用微信统一支付的接口&#xff0c;支付时报错&#xff1a; 解决方案&#xff1a; 打开微信商户平台&#xff0c;将当前页面的URL配置到JSAPI域名。

借助xxl-sso实现SSO

前言 市场上一下主流的SSO技术搭配方案&#xff1a; SpringSecurity OAuth2 SpringSecurity CAS 功能较弱&#xff0c;对前后端分离的项目支持不是很好Shiro CAS JWT 可以自定义需求&#xff0c;灵活扩展鉴权方式 本篇主要是单点登录&#xff0c;不涉及鉴权&#xff0c;后面…

工作277:v-model实战

<!-- 用栅格布局实现的单选框 --> <template><!--v-model默认绑定:value"value" change"value $event.target.value"--><el-radio-group :value"value" input"handleChange" style"width: 100%">…