Describe Merge sort algorithm
Briefly describe the term merge sort algorithm?
Expert
A merge sort algorithm which splits the items to be sorted in two groups, recursively sorts each group, and merges them in a final, sorted sequence. Run time is T(n log n).
If n<2 then the array is already sorted. Stop now.
Otherwise, n>1, and we perform the subsequent three steps in sequence:
Sort the left half of the array.
Sort the right half of the array.
Merge the now-sorted left and right halves.
Explain how deletion is performed in the binary search tree.
Explain about a B+ tree and its uses.
What do you mean by the term matrix? Describe its uses with an illustration.
Briefly describe the term Tree database. Elucidate its common uses?
Define how to implement queue by using stack?
Specify the actions which are performed when a function is called?
Illustrates the recursive algorithm?
What are the areas wherein data structures are applied extensively?
Write down the differentiation between STACK and ARRAY?
Illustrates the difference between ARRAY and STACK?
18,76,764
1923656 Asked
3,689
Active Tutors
1448540
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!