16 lines
237 B
C++
16 lines
237 B
C++
|
#ifndef S0513_FIND_BOTTOM_LEFT_TREE_VALUE_HPP
|
||
|
#define S0513_FIND_BOTTOM_LEFT_TREE_VALUE_HPP
|
||
|
|
||
|
#include <queue>
|
||
|
|
||
|
#include "structures.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class S0513 {
|
||
|
public:
|
||
|
int findBottomLeftValue(TreeNode* root);
|
||
|
};
|
||
|
|
||
|
#endif
|