LeetCode[257] Binary Tree Paths
Given a binary tree, return all root-to-leaf paths.
For example, given the following binary tree:
1 / 2 3 5
RecursionAll root-to-leaf paths are:
["1->2->5", "1->3"]
復雜度
O(N), O(H)
思路
基本算法,遞歸。
代碼
public ListIterationbinaryTreePaths(TreeNode root) { List list = new LinkedList<>(); helper(root, "", list); return list; } public void helper(TreeNode root, String cur, List list) { if(root == null) return null; cur += root.val; if(root.left == null && root.right == null) { list.add(cur); return; } cur += "->"; helper(root.left, cur, list); helper(root.right, cur, list); }
復雜度
O(N), O(N)
思路
遞歸用stack和stack進行dfs。
代碼
public Listpaths(TreeNode root) { StringBuilder builder = new StringBuilder(); List res = new LinkedList<>(); if(root == null) return res; Stack stack = new Stack<>(); Set set = new HashSet<>(); stack.push(root); builder.append(root.val); while(!stack.isEmpty()) { TreeNode cur = stack.peek(); set.add(cur); if(cur.left != null && !set.contains(cur.left)) { builder.append(cur.left.val); stack.push(cur.left); continue; } if(cur.right != null && !set.contains(cur.right)) { builder.append(cur.right.val); stack.push(cur.right); continue; } res.add(builder.toString()); builder.deleteCharAt(builder.length() - 1); } return res; }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/65270.html
摘要:在線網站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個題。這是項目地址歡迎一起交流學習。 這篇文章記錄我練習的 LeetCode 題目,語言 JavaScript。 在線網站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...
摘要:月下半旬攻略道題,目前已攻略題。目前簡單難度攻略已經到題,所以后面會調整自己,在刷算法與數據結構的同時,攻略中等難度的題目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道題,目前已攻略 100 題。 一 目錄 不折騰的前端,和咸魚有什么區別...
摘要:遞歸法復雜度時間空間遞歸棧空間對于二叉樹思路簡單的二叉樹遍歷,遍歷的過程中記錄之前的路徑,一旦遍歷到葉子節點便將該路徑加入結果中。當遇到最小公共祖先的時候便合并路徑。需要注意的是,我們要單獨處理目標節點自身是最小公共祖先的情況。 Root To Leaf Binary Tree Paths Given a binary tree, return all root-to-leaf pat...
摘要:解題思路利用遞歸,對于每個根節點,只要左子樹和右子樹中有一個滿足,就返回每次訪問一個節點,就將該節點的作為新的進行下一層的判斷。代碼解題思路本題的不同點是可以不從開始,不到結束。代碼當前節點開始當前節點左節點開始當前節點右節點開始 Path SumGiven a binary tree and a sum, determine if the tree has a root-to-lea...
摘要: 112. Path Sum Problem Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. Note: A leaf is a node...
閱讀 1259·2021-11-23 09:51
閱讀 1626·2021-11-16 11:45
閱讀 4012·2021-10-09 09:43
閱讀 2681·2021-07-22 16:47
閱讀 943·2019-08-27 10:55
閱讀 3448·2019-08-26 17:40
閱讀 3082·2019-08-26 11:39
閱讀 3227·2019-08-23 18:39