博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode021 Merge Two Sorted Listss C语言
阅读量:6294 次
发布时间:2019-06-22

本文共 1134 字,大约阅读时间需要 3 分钟。

1
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.

题意:合并两个有序单链表,合并后的仍然是有序的。。。。。。。。。。。。。。。。。。。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
 
* 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;
    
}

。。。。。。。。。。。。。。。。太笨了。。。。。。。。。。。。。。。。继续练习吧少年。。。。。。。。。。。。。。。

本文转自 努力的C 51CTO博客,原文链接:http://blog.51cto.com/fulin0532/1864639

转载地址:http://frvta.baihongyu.com/

你可能感兴趣的文章
input checkbox 复选框大小修改
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
查看>>
《从零开始学Swift》学习笔记(Day 51)——扩展构造函数
查看>>