简单题22-平面列表

作者: Airycode | 来源:发表于2018-05-09 10:21 被阅读24次

    描述

    给定一个列表,该列表中的每个要素要么是个列表,要么是整数。将其变成一个只包含整数的简单列表。
    如果给定的列表中的要素本身也是一个列表,那么它也可以包含列表。
    您在真实的面试中是否遇到过这个题? 是
    样例

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

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

    请用非递归方法尝试解答这道题。
    【思路】
    递归的方法判断是不是一个整数,如果是一个整数的话就直接添加到结果列表中,如果是一个列表的话就递归调用这个方法把数据添加到列表中。
    【代码实现】

    /**
     * // This is the interface that allows for creating nested lists.
     * // You should not implement it, or speculate about its implementation
     * public interface NestedInteger {
     *
     *     // @return true if this NestedInteger holds a single integer,
     *     // rather than a nested list.
     *     public boolean isInteger();
     *
     *     // @return the single integer that this NestedInteger holds,
     *     // if it holds a single integer
     *     // Return null if this NestedInteger holds a nested list
     *     public Integer getInteger();
     *
     *     // @return the nested list that this NestedInteger holds,
     *     // if it holds a nested list
     *     // Return null if this NestedInteger holds a single integer
     *     public List<NestedInteger> getList();
     * }
     */
    public class Solution {
    
        // @param nestedList a list of NestedInteger
        // @return a list of integer
        public List<Integer> flatten(List<NestedInteger> nestedList) {
            List<Integer> result = new ArrayList<Integer>();
            for (NestedInteger ele : nestedList)
                if (ele.isInteger())
                    result.add(ele.getInteger());
                else
                    result.addAll(flatten(ele.getList()));
            return result;
        }
    }
    

    【代码实现2-非递归的方式】

    public class Solution {
    
        // @param nestedList a list of NestedInteger
        // @return a list of integer
        public List<Integer> flatten(List<NestedInteger> nestedList) {
            boolean isFlat = true;
            List<NestedInteger> ls = nestedList;
            while (isFlat) {
                isFlat = false;
                List<NestedInteger> newLs = new ArrayList<>();
                for (NestedInteger ni : ls) {
                    if (ni.isInteger()) {
                        newLs.add(ni);
                    } else {
                        newLs.addAll(ni.getList());
                        isFlat = true;
                    }
                }
                ls = newLs;
            }
            List<Integer> r = new ArrayList<>();
            for (NestedInteger ni : ls) {
                r.add(ni.getInteger());
            }
            return r;
        }
    }
    

    相关文章

      网友评论

        本文标题:简单题22-平面列表

        本文链接:https://www.haomeiwen.com/subject/lshnrftx.html