Suppose a binary search tree has all levels filled to capacity. When we remove the root of such a tree, which of the following can take its place so that the tree remains a BST?
A. The largest node in the left subtree
B. The smallest node in the right subtree
C. Any node from the left subtree
D. Any node from the right subtree