18 lines
260 B
C++
18 lines
260 B
C++
#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
|