Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Explain about Merge Sort?



Explain about Merge Sort?..

Answer / rohit sah

Merge-sort is based on the divide-and-conquer paradigm. The Merge-sort algorithm can be described in general terms as consisting of the following three steps:
1. Divide Step
If given array A has zero or one element, return S; it is already sorted. Otherwise, divide A into two arrays, A1 and A2, each containing about half of the elements of A.
2. Recursion Step
Recursively sort array A1 and A2.
3. Conquer Step
Combine the elements back in A by merging the sorted arrays A1 and A2 into a sorted sequence.
We can visualize Merge-sort by means of binary tree where each node of the tree represents a recursive call and each external nodes represent individual elements of given array A. Such a tree is called Merge-sort tree. The heart of the Merge-sort algorithm is conquer step, which merge two sorted sequences into a single sorted sequence.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Data Structures Interview Questions

Which data structure is needed to convert infix notations to post fix notations?

20 Answers   Fidelity, Infosys,


Briefly explain recursive algorithm?

0 Answers  


What is the difference between data type and data structure?

0 Answers  


What is arrays copyof?

0 Answers  


What is dequeue operation?

0 Answers  


Explain quick sort and merge sort algorithms.

0 Answers  


Does hashtable allow null values?

0 Answers  


What is the types of data structure?

0 Answers  


What is time complexity of quick sort?

0 Answers  


Explain the uses of binary tree.

0 Answers  


What is sorting problem?

0 Answers  


Compare Queue and Topic ?

0 Answers   Tech Mahindra,


Categories