Lintcode22 Flatten List solution 题解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lintcode22 Flatten List solution 题解相关的知识,希望对你有一定的参考价值。

【题目描述】

Given a list, each element in the list can be a list or integer. flatten it into a simply list with integers.

Notice:If the element in the given list is a list, it can contain list too.

给定一个列表,该列表中的每个要素要么是个列表,要么是整数。将其变成一个只包含整数的简单列表。

注意:如果给定的列表中的要素本身也是一个列表,那么它也可以包含列表。

【题目链接】

http://www.lintcode.com/en/problem/flatten-list/

【题目解析】

给定 [1,2,[1,2]],返回 [1,2,1,2]。

给定 [4,[3,[2,[1]]]],返回 [4,3,2,1]。

递归解法和非递归解法解答。容易题。

【参考答案】

http://www.jiuzhang.com/solutions/flatten-list/


以上是关于Lintcode22 Flatten List solution 题解的主要内容,如果未能解决你的问题,请参考以下文章

lintcode453- Flatten Binary Tree to Linked List- easy

[LintCode] Flatten Binary Tree to Linked List 将二叉树展开成链表

这是对 flatten 的正确使用吗?

刷题--二叉树(2)

[LintCode] Linked List Cycle 单链表中的环

341. Flatten Nested List Iterator