LeetCode 430. Flatten a Multilevel Doubly Linked List
发布日期:2021-07-27 05:11:47
浏览次数:5
分类:技术文章
本文共 2602 字,大约阅读时间需要 8 分钟。
Description
You are given a doubly linked list which in addition to the next and previous pointers, it could have a child pointer, which may or may not point to a separate doubly linked list. These child lists may have one or more children of their own, and so on, to produce a multilevel data structure, as shown in the example below.
Flatten the list so that all the nodes appear in a single-level, doubly linked list. You are given the head of the first level of the list.
Example 1:
Input: head = [1,2,3,4,5,6,null,null,null,7,8,9,10,null,null,11,12]Output: [1,2,3,7,8,11,12,9,10,4,5,6]Explanation:The multilevel linked list in the input is as follows:
After flattening the multilevel linked list it becomes:
Example 2:
Input: head = [1,2,null,3]Output: [1,3,2]Explanation:
The input multilevel linked list is as follows: 1---2---NULL | 3---NULL
Example 3:
Input: head = []Output: []
How multilevel linked list is represented in test case:
We use the multilevel linked list from Example 1 above: 1---2---3---4---5---6--NULL | 7---8---9---10--NULL | 11--12--NULLThe serialization of each level is as follows:[1,2,3,4,5,6,null][7,8,9,10,null][11,12,null]To serialize all levels together we will add nulls in each level to signify no node connects to the upper node of the previous level. The serialization becomes:[1,2,3,4,5,6,null][null,null,7,8,9,10,null][null,11,12,null]Merging the serialization of each level and removing trailing nulls we obtain:[1,2,3,4,5,6,null,null,null,7,8,9,10,null,null,11,12]
思路
- 使用循环,从头开始遍历,将子链看成一个整体,将整体向上移动一层。
- 继续向后遍历,如果遇到子链,将其看作一层,将其整体向上移动,如此循环下去,直至结束。
# -*- coding: utf-8 -*-# @Author: 何睿# @Create Date: 2019-12-29 10:57:03# @Last Modified by: 何睿# @Last Modified time: 2019-12-29 11:05:17class Node: def __init__(self, val, prev, next, child): self.val = val self.prev = prev self.next = next self.child = childclass Solution: def flatten(self, head: 'Node') -> 'Node': current = head while current: if current.child: _next = current.next # 当前节点的后一个节点 last = current.child # 当前节点的自节点 while last.next: last = last.next # 如果有子节点,找到子节点的最后一个节点 current.next = current.child current.next.prev = current # 将自节点向上提高一层 current.child = None last.next = _next if _next: _next.prev = last current = current.next return head
源代码文件在 这里 。
©本文首发于 何睿的博客 ,欢迎转载,转载需保留 文章来源 ,作者信息和本声明.转载地址:https://blog.csdn.net/qq_45533841/article/details/104279428 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!
发表评论
最新留言
路过,博主的博客真漂亮。。
[***.116.15.85]2024年09月09日 04时21分25秒
关于作者
喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
openstack报错解决三
2019-05-27
乙未年年终总结
2019-05-27
子网掩码
2019-05-27
第一天上班没精神
2019-05-27
eclipse安装插件的两种方式在线和离线
2019-05-27
linux下源的相关笔记(suse)
2019-05-27
linux系统分区文件系统划分札记
2019-05-27
Linux(SUSE 12)安装Tomcat
2019-05-27
Linux(SUSE 12)安装jboss4并实现远程访问
2019-05-27
Neutron在给虚拟机分配网络时,底层是如何实现的?
2019-05-27
netfilter/iptables全攻略
2019-05-27
Overlay之VXLAN架构
2019-05-27
在eclipse上用tomcat部署项目404解决方案
2019-05-27
web.xml 配置中classpath: 与classpath*:的区别
2019-05-27
suse如何修改ssh端口为2222?
2019-05-27
详细理解“>/dev/null 2>&1”
2019-05-27
suse如何创建定时任务?
2019-05-27
suse搭建ftp服务器方法
2019-05-27