Consider the following set of operations on a Binary Search Tree T storing strin...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following set of operations on a Binary Search Tree T storing strings as both keys and values:T.add("Apu", "Apu");T.add("Ron", "Ron");T.add("Lee", "Lee");T.add("Joe", "Joe");T.add("Ken", "Ken");What would be the output if we printed the content of the BST in in-order traversal?