zoukankan      html  css  js  c++  java
  • Leet-code144. Binary Tree Preorder Traversal

    这是一道将二叉树先序遍历,题目不难。

    首先采用深搜递归

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    public class Solution {
       public static List<Integer> resultlist = new ArrayList<Integer>();
    
        public static void dfs (TreeNode root ,boolean flag ) {
            if(flag==true)
            {
                resultlist.clear();
            }
            if(root==null)
            {
                return ;
            }
    
                resultlist.add(root.val);
    
            if(root.left!=null)
            {
                dfs(root.left,false);
            }
            if(root.right!=null)
            {
                dfs(root.right,false);
            }
            
        }
    
    
        public static List<Integer> preorderTraversal(TreeNode root ) {
            dfs(root,true);
            return resultlist;
        }
    
    }

     非递归实现方式

     public static List<Integer> preorderTraversal(TreeNode root ) {
            List<Integer> result = new ArrayList<>();
    
            if(root == null)
                return result;
    
            Stack<TreeNode> stack = new Stack<TreeNode>();
            stack.push(root);
    
            while(!stack.empty()){
                TreeNode n = stack.pop();
                result.add(n.val);
    
                if(n.right != null){
                    stack.push(n.right);
                }
                if(n.left != null){
                    stack.push(n.left);
                }
    
            }
            return result;
        }
  • 相关阅读:
    指定盘符获取u盘PID、VID、序列号等信息
    禁用u盘再启用
    golang 使用编译选项-H=windowsgui后,仍然输出log到console
    c#实现"扫描检测硬件改动"
    哈希表
    Python 环境搭建
    Python 简介
    Python 基础教程
    7.1.2 定义改进的Sales_date类
    第七章 类
  • 原文地址:https://www.cnblogs.com/ren-jie/p/5272388.html
Copyright © 2011-2022 走看看