Problem Description
I am working with a tree structure where nodes are labeled as A->B->C. I am attempting to use the drop.tip function to remove node C from the tree. However, when I execute the function, it returns NULL.
Steps to Reproduce
- Create a tree structure with nodes A->B->C.
- Use the
drop.tip function to remove node C.
Expected Behavior
I expect the drop.tip function to remove node C from the tree and return the modified tree structure.
Actual Behavior
The drop.tip function returns NULL instead of the expected modified tree structure.