leetcode/include/s0450_delete_node_in_a_bst.hpp

12 lines
189 B
C++
Raw Permalink Normal View History

2023-02-01 03:42:09 +00:00
#ifndef S0450_DELETE_NODE_IN_A_BST_HPP
#define S0450_DELETE_NODE_IN_A_BST_HPP
#include "structures.hpp"
class S0450 {
public:
TreeNode* deleteNode(TreeNode* root, int key);
};
#endif