leetcode/include/s0257_binary_tree_paths.hpp

18 lines
260 B
C++
Raw Normal View History

2023-01-31 03:47:01 +00:00
#ifndef S0257_BINARY_TREE_PATHS_HPP
#define S0257_BINARY_TREE_PATHS_HPP
#include <queue>
#include <string>
#include <vector>
#include "structures.hpp"
using namespace std;
class S0257 {
public:
vector<string> binaryTreePaths(TreeNode* root);
};
#endif