I have a task to develop an electronic phone book in which i have to store names and phone numbers of employees of a company. The data structures available to you are linked list and Binary Search Tree (BST) and i have to choose best supported data structure for my project. Moreover, while selecting any data structure, you also have to keep in consideration insertion, deletion and search operations, because, the company can hire some new employees, search for an employee’s phone number and some old employees can also leave this company. Discuss which data structure do you think would be more suitable for the above discussed scenario. Also discuss the reason why would you prefer this data structure over the other?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
BST would be better. because...
Thus on an average linked list is better. P.S. : I am assuming you want to store the phonebook in a sorted manner. |
|||
|
|