博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode Binary Tree Paths
阅读量:5320 次
发布时间:2019-06-14

本文共 860 字,大约阅读时间需要 2 分钟。

题目连接

  

 Binary Tree Paths

Description

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

For example, given the following binary tree:

/ \ 
2 3 
All root-to-leaf paths are:

$["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
binaryTreePaths(TreeNode* root) { ans.clear(); if (!root) return ans; dfs(root, ""); return ans; }private: vector
ans; void dfs(TreeNode *x, string ret) { if (!x) return; if (!x->left && !x->right) { ans.push_back(ret + to_string(x->val)); return; } dfs(x->left, ret + to_string(x->val) + "->"); dfs(x->right, ret + to_string(x->val) + "->"); }};

转载于:https://www.cnblogs.com/GadyPu/p/5020623.html

你可能感兴趣的文章
stm32中字节对齐问题(__align(n),__packed用法)
查看>>
like tp
查看>>
分布式系统事务一致性解决方案
查看>>
开启一个项目如何上传到git
查看>>
ie文本框内容不居中问题
查看>>
利用grub2制作多启动U盘
查看>>
MQTT的学习研究(十三) IBM MQTTV3 简单发布订阅实例
查看>>
使用 github Pages 服务建立个人独立博客全过程
查看>>
posix多线程有感--线程高级编程(线程属性函数总结)(代码)
查看>>
spring-使用MyEcilpse创建demo
查看>>
JavaScript -- 数据存储
查看>>
DCDC(4.5V to 23V -3.3V)
查看>>
kettle导数到user_用于left join_20160928
查看>>
activity 保存数据
查看>>
scrapy-加蘑菇代理
查看>>
typescript深copy和浅copy
查看>>
linux下的静态库与动态库详解
查看>>
hbuilder调底层运用,多张图片上传
查看>>
深入理解基于selenium的二次开发
查看>>
11、类的继承
查看>>