Which data structure gives efficient search?
A. B-tree B. binary tree C. array D. linked list
Answers were Sorted based on User's Feedback
Answer / verbeek
B(B+) tree is the correct answer. This is a method which is
used to store records in file system and has a very high
efficiency. Within very few level of depth of the tree( <10)
you can store over million records and therefore the search
becomes very fast.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / saumil
And Is B-Tree..
See this link
http://searchsqlserver.techtarget.com/sDefinition/0,,sid87_gci508442,00.html
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / william clausen
It depends... Consider a binary tree which is comprised of
strings based on their number of characters (which is not
out of the question for an application). Now consider
looking for the word "mall" in this binary tree. Where
would it be?
Now consider sorting an array with keys based on the
appearance of characters in the English alphabet. Finding
the word "mall" could be accomplished easily in T(n).
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / narendra singh
the correct answer is binary tree. becooooouse it devides
the searching processing into 2 parts. first left another
one is right side .it will proceed from root if the number
you are searching is smailler than tha root value . it
will search that number to left side and if number is
greater than the root it will go to right side.
| Is This Answer Correct ? | 0 Yes | 0 No |
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
What is a stl vector?
write a program to search and display the position of an element in a single-dimentional array using function.
Write a program to print the swapping in two no and using three variable.
How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.
Who created stl?
What is the underlying datastructure of map?
totoo po ba ang manga aliens!
What does stl stand for in basketball?
a program using one dimensional array that searches a number if it is found on the list of given input numbers given by the user and locate its exact location in the list.
What do you mean by stl?
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.