【easy】257. Binary Tree Paths 二叉樹找到全部路徑

http://blog.csdn.net/crazy1235/article/details/51474128node

花樣作二叉樹的題……竟然仍是不會麼……spa

 

/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */
class Solution { public: void binaryTreePaths(vector<string>& result,TreeNode* root,string t) { if(!root->left&&!root->right) { result.push_back(t); return; } if(root->left) binaryTreePaths(result,root->left,t+"->"+to_string(root->left->val)); if(root->right) binaryTreePaths(result,root->right,t+"->"+to_string(root->right->val)); } vector<string> binaryTreePaths(TreeNode* root) { vector<string> result; if(root==NULL) return result; binaryTreePaths(result,root,to_string(root->val)); return result; } };
相關文章
相關標籤/搜索