257. Binary Tree Paths Given a binary tree, return all root-to-leaf paths. 返回二叉树所有的根到叶子的路径。 代码: 参考代码 遇见叶子节点直接存入返回;否则继续递归左右节点。