answersLogoWhite

0


Best Answer

we can sort unordered list to order list. we fallow a mechanism given list divided into two parts take one-one part ordered them

User Avatar

Allene Morissette

Lvl 10
1y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

Merge sort algorithm is Divide and Conquer Algorithm.

Divide: Parition (integer division) the list of items/objects into halves

Conquer: Merge the Partitioned element/object

Complexity : theta(n log n) for Best, Worst and Average Case Syed Hasnain Shah Merge sort algorithm is Divide and Conquer Algorithm.

Divide: Parition (integer division) the list of items/objects into halves

Conquer: Merge the Partitioned element/object

Complexity : theta(n log n) for Best, Worst and Average Case Syed Hasnain Shah

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

A sorting technique that sequences data by continuously merging items in the list. Every single item in the original unordered list is merged with another, creating groups of two. Every two-item group is merged, creating groups of four and so on until there is one ordered list. See sorting-algorithmand m-rges.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

In computer science, a merge sort is an comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order od equal elements in the sorted output.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Definition of merge sort in data structure?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why merge sort is not in-place?

this use auxiliar data structure for to work, in-place is that on the same data structure of input this sort


Who is best merge sort or insertion sort?

Merge sort is good for large data sets, while insertion sort is good for small data sets.


Limitations of merge sort and quick sort?

Comolexity Not efficent big data


Quick sort is faster in data structure?

I think the data structure in question is array.


What is the best data structure for heap sort?

selection sort


Which algorithm is more efficient- insertion sort algorithm or merge sort algorithm?

On average merge sort is more efficient however insertion sort could potentially be faster. As a result it depends how close to reverse order the data is. If it is likely to be mostly sorted, insertion sort is faster, if not, merge sort is faster.


Which action do you perform on a data source to reorganize the order of the record for a merge?

You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.You can sort the data in ascending or descending order.


What are the Application of merge sort in real life?

It is used in tape drives to sort data - its good with parallel processing, which is why it is used there.


10 kinds of sorting in data structure?

1.Bubble Sort2.Insertion Sort3.Shell Sort4.Merge Sort5.Heap Sort6.Quick Sort7.Bucket Sort8.Radix Sort9.Distribution Sort10.Shuffle Sort


Which sorting methode is more fast in data structure?

Quick Sort


What is the difference between shell sort and merge sort?

shell uses an odd number,merge uses an even number?


Why comparisons are less in merge sort than insertion sort?

the main reason is: Merge sort is non-adoptive while insertion sort is adoptive the main reason is: Merge sort is non-adoptive while insertion sort is adoptive