博客
关于我
[2021校招必看之Java版《剑指offer》-16] 合并两个排序的链表
阅读量:109 次
发布时间:2019-02-26

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

??????????

????

  • ????
  • ????
    2.1 ???
    2.2 ???
  • ????
    3.1 ???
    3.2 ???
  • ????
  • ????

    ??????????????????????????????????????

    ??????????
    ????

    ????

    ???
  • ?????
    • ??????????? head?????????? index1 ? index2?
    • ???????? temp ????????
    • ?? index1 ? index2 ????????????????????????
    • ?????????????????????????????
  • ???
  • ?????
    • ?????????????????????????
    • ??????????????????????????
    • ????????????????????????????????
  • ????

    ?????
    package pers.klb.jzoffer.medium;public class MergeList {    public ListNode Merge(ListNode list1, ListNode list2) {        if (list1 == null) {            return list2;        } else if (list2 == null) {            return list1;        }                ListNode head = new ListNode(0);        ListNode temp = head;        ListNode index1 = list1;        ListNode index2 = list2;                while (true) {            if (index1.val <= index2.val) {                temp.next = index1;                index1 = index1.next;                temp = temp.next;                                if (index1 == null) {                    temp.next = index2;                    break;                }            } else {                temp.next = index2;                index2 = index2.next;                temp = temp.next;                                if (index2 == null) {                    temp.next = index1;                    break;                }            }        }                return head.next;    }        public class ListNode {        public int val;        public ListNode next = null;        public ListNode(int val) {            this.val = val;        }    }}
    ?????
    package pers.klb.jzoffer.medium;public class MergeList {    public ListNode Merge(ListNode list1, ListNode list2) {        if (list1 == null) {            return list2;        } else if (list2 == null) {            return list1;        } else {            if (list1.val <= list2.val) {                list1.next = Merge(list1.next, list2);                return list1;            } else {                list2.next = Merge(list1, list2.next);                return list2;            }        }    }        public class ListNode {        public int val;        public ListNode next = null;        public ListNode(int val) {            this.val = val;        }    }}

    ????

    ?????????????????????????????

    • ????????????????????????????
    • ??????????????????????????
      ???????????????????????????????????????????

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

    你可能感兴趣的文章
    Python和RF编写web自动化
    查看>>
    python和js哪个难_【Python】记一次学习,Python 与 js 在实现闭包时的差异
    查看>>
    python和java哪个更值得学——来自知乎高赞回答
    查看>>
    python和c混合编程 github_在pycharm中使用git版本管理以及同步github的方法
    查看>>
    python命名空间更改_Python模块xml.etree.ElementTree自动修改xml命名空间键
    查看>>
    Python命名中尾随下划线有什么好处?
    查看>>
    Python启动脚本
    查看>>
    Python听写汇总结果
    查看>>
    python吊打Excel?屁!那是你不会用!
    查看>>
    Python合并两张图片 | 先叠透明度再合并 (附Demo)
    查看>>
    python各进制的表述与转换
    查看>>
    python各种库安装
    查看>>
    python可视化matplotlib_如何使用Python中最强大的可视化工具Matplotlib?
    查看>>
    python可维护性_使用这7大神器,让你的Python 代码更容易于维护
    查看>>
    Python只运行一次while循环
    查看>>
    python变量的详细教程_Python零基础入门教程之语法入门[变量](第二期)
    查看>>
    Python变量命名方法-ChatGPT4o作答
    查看>>
    Python变量与运算符
    查看>>
    Python变量/运算符/函数/模块/string
    查看>>
    python发送邮件的时候出现 error (535, b‘5.7.3 Authentication unsuccessful‘) 解决方法
    查看>>