【力扣每日一题】144. 二叉树的前序遍历

简介: 【力扣每日一题】144. 二叉树的前序遍历

1. 题目描述

2. 题目解析

3. 题目代码

3.1 递归

**public IList<int> PreorderTraversal(TreeNode root)
        {
            List<int> list = new List<int>();
            Tree(root, list);
            return list;
        }
        public static void Tree(TreeNode root, List<int> list)
        {
            if(root != null)
            {
                list.Add(root.val);
                Tree(root.left, list);
                Tree(root.right, list);
            }
        }**

3.2 迭代

public IList<int> PreorderTraversal(TreeNode root)
        {
            Stack<TreeNode> stack = new Stack<TreeNode>();
            IList<int> list = new List<int>();
            if (root != null)
            {
                stack.Push(root);
            }
            while (stack.Count != 0)
            {
                TreeNode temp = stack.Peek();
                stack.Pop();
                if (temp != null)
                {
                    if (temp.right != null)
                    {
                        stack.Push(temp.right);
                    }
                    if(temp.left != null)
                    {
                        stack.Push(temp.left);
                    }
                    stack.Push(temp);
                    stack.Push(null);
                }
                else
                {
                    list.Add(stack.Peek().val);
                    stack.Pop();
                }
            }
            return list;
        }


相关文章
|
1月前
【LeetCode 31】104.二叉树的最大深度
【LeetCode 31】104.二叉树的最大深度
19 2
|
1月前
【LeetCode 29】226.反转二叉树
【LeetCode 29】226.反转二叉树
16 2
|
1月前
【LeetCode 43】236.二叉树的最近公共祖先
【LeetCode 43】236.二叉树的最近公共祖先
19 0
|
1月前
【LeetCode 38】617.合并二叉树
【LeetCode 38】617.合并二叉树
14 0
|
1月前
【LeetCode 37】106.从中序与后序遍历构造二叉树
【LeetCode 37】106.从中序与后序遍历构造二叉树
17 0
|
1月前
【LeetCode 34】257.二叉树的所有路径
【LeetCode 34】257.二叉树的所有路径
17 0
|
1月前
【LeetCode 32】111.二叉树的最小深度
【LeetCode 32】111.二叉树的最小深度
16 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
57 6
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
114 2