给定一个二叉树,返回所有从根节点到叶子节点的路径。
    说明: 叶子节点是指没有子节点的节点。
    示例:

    1. 输入:
    2. 1
    3. / \
    4. 2 3
    5. \
    6. 5
    7. 输出: ["1->2->5", "1->3"]
    8. 解释: 所有根节点到叶子节点的路径为: 1->2->5, 1->3
    /**
     * 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:
        vector<string> strs;
        vector<string> binaryTreePaths(TreeNode* root) {
            treePath(root,"");
            return strs;
    
        }
        void treePath(TreeNode* root, string pre){
            if(root == NULL){
                return ;
            }
    
            if(root->left == NULL && root->right == NULL){
                pre.append(to_string(root->val));
                strs.push_back(pre);
            }
            pre.append(to_string(root->val) + "->");
            treePath(root->left, pre);
            treePath(root->right, pre);
            return ;
    
        }
    };