Ask Question
13 November, 16:14

When the amount of storage data is big, and we need the searching and insertion must be very fast, which kind of data structure we should consider? a. Hash table b. Binary tree c. Array d. Linked Lists

+4
Answers (1)
  1. 13 November, 16:45
    0
    b. Binary tree

    Explanation:

    The time complexity of a binary tree is O (log n). As it scales up in size (n), the time taken is only log n. This is because it makes use of divide and conquer to split up the data which makes searching and inserting very simple. However, this only holds if the data is already sorted.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “When the amount of storage data is big, and we need the searching and insertion must be very fast, which kind of data structure we should ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers