This commit is contained in:
2023-01-31 11:47:01 +08:00
parent 495a134494
commit 0efe4e243c
3 changed files with 51 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
#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