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.
            Asked
            
        
        
            Active
            
        
            Viewed 230 times
        
    0
            
            
        - 
                    can anyone provide some statistical data. – jvc Jul 14 '11 at 14:38
1 Answers
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
 
    