Question: Which of the following is NOT a valid way to implement a binary tree in C++?
Options:
Correct Answer: Using a linked list
Solution:
While you can use arrays and vectors to represent binary trees, using a linked list is not a standard way to implement a binary tree.