Ask Question
21 July, 21:12

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. 21 July, 21:28
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers