leetcode/include/s0104_maximum_depth_of_bina...

16 lines
232 B
C++
Raw Permalink Normal View History

2023-01-30 12:55:48 +00:00
#ifndef S0104_MAXIMUM_DEPTH_OF_BINARY_TREE_HPP
#define S0104_MAXIMUM_DEPTH_OF_BINARY_TREE_HPP
#include <algorithm>
#include "structures.hpp"
using namespace std;
class S0104 {
public:
int maxDepth(TreeNode* root);
};
#endif