0

I was just wondering what would be the performance ratio, between binary search tree implemented using a linked and a binary search tree implemented using an array. I just want to know the performance comparisons. I've already read this question in stackoverflow.

Community
  • 1
  • 1
jvc
  • 604
  • 2
  • 12
  • 33

1 Answers1

0

I do not think you can implement a binary search tree with an array. A binary search tree is like an advanced linked list. In fact, if you use a basic BST (not balancing) and input presorted data, you basically end up with a linked list.

Ben Ward
  • 874
  • 5
  • 12