This commit is contained in:
2023-02-01 11:42:09 +08:00
parent 8c694f2996
commit a0517aa4d0
3 changed files with 42 additions and 0 deletions

View File

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