257. Binary Tree Paths

Source: Internet
Author: User

Given a binary tree, return all root-to-leaf paths.

For example, given the following binary tree:

   1/   2     3   5

All root-to-leaf paths is:

["1->2->5", "1->3"]

Idea: DFS, search to leaf stop, save to Res. I used the StringBuilder, in the back of the time how to return to the previous state did not think out. Reference to a method in the discussion, SetLength. Mactan, almost, look at the answer is much more comfortable.
/*** Definition for a binary tree node. * public class TreeNode {* int val; * TreeNode left; * TreeNode rig Ht * TreeNode (int x) {val = x;} }*/ Public classSolution { PublicList<string>binarytreepaths (TreeNode root) {List<String> res=NewArraylist<string>(); StringBuilder Save=NewStringBuilder ();        DPS (Root,res,save); returnRes; }     Public voidDPS (TreeNode root, list<string>Res, StringBuilder SB) {        if(root==NULL)        {            return; }        intLength=sb.length (); if(root.left==NULL&&root.right==NULL) {sb.append (root.val);            Res.add (Sb.tostring ());            Sb.setlength (length); return;        } sb.append (Root.val); Sb.append (",");        DPS (ROOT.LEFT,RES,SB);        DPS (ROOT.RIGHT,RES,SB);    Sb.setlength (length); }            }

More understanding of the point of backtracking, that is, the condition of return.

257. Binary Tree Paths

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.