Merge sort is an O(n log n) comparison-based sorting algorithm.

learn more… | top users | synonyms

1
vote
2answers
110 views

How do I turn a recursive algorithm into a tail-recursive algorithm?

As a first attempt to get into merge sort i produced the following code which works on strings because they are easier than lists to deal with. class Program { static int iterations = 0; ...
0
votes
0answers
8 views

AVL Tree sort word or sentence + mergesort

i started learning algorithm and structural data, and i don't know how to make an AVL Tree function with input from word or sentence that already sorted using mergesort: First user input word or ...
0
votes
1answer
28 views

Merge Sort in String using LinkedList

I used LinkedList as a dymanic array then this array contains strings that need to be sorted in alphabetical order by using merge sort algorithm, which is added in the method and it turned out not ...
0
votes
2answers
39 views

How do I make this merge sort go in descending order rather than ascending?

This is probably a fairly simple problem. I just can't figure out how to make this sort in descending order rather than ascending. Can anyone help me out? public static void sortYear(Movie4[] movies, ...
0
votes
3answers
83 views

Merge sort python infinite loop

I have decide to learn python recently! I want to write an easy merge sort using the following code : def mergeSort(lst): l = len(lst) if l <= 0: print("empty") return ...
2
votes
1answer
56 views

Lua mergesort bug

I'm trying to learn Lua by writing a basic mergesort, but since I'm also unfamiliar with mergesorts, I've run into some problems. The code: arr = {} status = 0 function return_first_half (list) ...
0
votes
2answers
69 views

What's wrong in this “mergeSort”?

There's a mergeSort code that I copied at class lesson, can you help me to find the errors? When I run the main that use mergeSort the program enters in an infinite loop but doesn't display any ...
-1
votes
1answer
29 views

Trying to do a merge sort, do not know what I'm missing in the code… Can anyone point me in the right direction? [closed]

I'm trying to do a merge sort, using the code found in my book, I understand the concept/idea, and this is what I have: public class MergeSort<T> { public static <T extends Comparable<? ...
0
votes
0answers
47 views

Java MergeSort speedup using Multi Threading

I'm trying to implement a version of Mergesort using Multi Threading. First off, I know there's a billion threads (give or take...) on here, and I've read a few to no avail! I'm trying to show that ...
-2
votes
1answer
46 views

My mergesort() only working for some arrays [closed]

I have written a mergesort in Java, but it only works for some arrays where both halves of the array are alredy sorted. I believe the error to be inside my mergesort method, or st do you think? Any ...
-1
votes
1answer
30 views

Why is merge sort's worst case still n log n?

It was a question on my final I took earlier and I had no idea how to answer it. Well it was What is Merge sort's worst case runtime but MORE IMPORTANTLY, why?
-1
votes
2answers
40 views

Java Merge sort recieving error message

I'm very new to java and I'm doing an assignment where were required to use merge sort but I continue to get errors. We're using ArrayList and its causing me to make a lot of mistakes. I posted the ...
1
vote
3answers
102 views

Merge sort remove duplicates

I am trying to sort an array via merge sort, and while sorting, remove elements that I have deemed equal. I am recursively calling merge sort and then merging. I get to this point and find that a ...
0
votes
2answers
53 views

java mergesort count homework

I am working on getting the counts of comparisons and movers when merge sorting. I think I have the recursion I need thanks to this Sort Comparisons Counter but I can not get it to print out. I am ...
0
votes
0answers
36 views

Merge Sort Comparison Counter

I cant seem to figure out where to put my comparison counter in the Merge class. Although it sorts the array perfectly, it will not count the number of swaps (or comparisons) it made. Please help this ...
0
votes
1answer
50 views

Merge Sort throwing error [closed]

I am writing a merge sort and I'm getting an arrayIndexOutOfBounds exception and I can't figure out why. Here is the code: public class MergeSort { private int[] helper; private int[] ...
-2
votes
0answers
13 views

Merge Sort to Int

Sorry, but I can't figure out how or why this is not giving me an int return back. Any help to make this return an int would be great public static int MergeSort(int[ ] data, int first, int n) { ...
1
vote
3answers
41 views

Only want to print the array once - MergeSort

Running into an issue with MergeSort. After I sort the array, I want it to only print the fully sorted array, not every pass. My code is below. I am running printArray(intArray) after the array seems ...
1
vote
1answer
37 views

Counting Number of Comparisons for MergeSort Java

I am having trouble counting the number of comparisons for mergesort in Java. Below is my code. Not sure if I'm placing it in the wrong spot, etc. Any help is definitely appreciated, thanks. private ...
1
vote
1answer
37 views

Why the program is showing always the same string? [+MIPS]

I need to save a data that contains: name, id and rating. So the insert command is kind this one: addi $sp, $sp, -12 li $v0,8 # take in input la $a0, buffer # load byte space into ...
1
vote
1answer
157 views

How do i do external merge sort on binary file

This short program makes a binary file called data.bin with a bunch of randomly generated items that are 1024 bytes each. where the first 24 bytes of each item is the key. so how do i read each item ...
-1
votes
1answer
62 views

what is threshold in merge sort?

i can not understand threshold in merge sort and how can I determine it. i google it but no result. can anyone explain it for me? i want to sort the array[50000] using merge sort, when threshold ...
1
vote
1answer
61 views

Merge Sort on an array of floating point numbers of fixed size 25 (C programming language)

My code is as follows: void mergeSort(float a[], int first, int last) { //Function performs a mergeSort on an array for indices first to last int mid; //if more than 1 element in ...
1
vote
3answers
29 views

mergesort dividing the sequence not into half

usually, mergesort is performed by dividing the sequence into half and recursively sorting it. however is it also possible to perform mergesort by dividing the sequence by a third? mergesort(array, ...
1
vote
4answers
94 views

What's wrong with my mergesort implementation?

On smaller lists of up to size N = ~1950 or so, I get the correct output... however, list sizes that are not much larger return an error rather than the expected result. My code: def merge(left, ...
0
votes
4answers
94 views

Merge sort with array lists in java

So for homework I have to write a program that mergeSorts with array lists from a code that works with regular arrays, I was just wondering if someone could help me figure out where I went wrong, ...
0
votes
2answers
73 views

MergeSort on LinkedList

I have homework - write a Merge Sort algorithm in java. I used LinkedList to store my data. I try to converting pseudocode from wikipedia (http://en.wikipedia.org/wiki/Merge_sort) to java, but it ...
0
votes
1answer
27 views

Merge sort recursions

I have a problem. I started to learn how merge sort works, and now I'm stuck. I don't understand second recursion in merge function. int merge_sort(int input[], int p, int r) { if ( p >= r ...
0
votes
0answers
36 views

What's wrong with my mergesort in python? [closed]

def msort(L): if len(L) <= 1: return L if L[0] < L[-1]: return msort(L[:(len(L)//2)]) + msort(L[(len(L)//2):]) else: return msort(L[(len(L)//2):]) + ...
0
votes
1answer
37 views

Merge sort generic method

My merge sort doesn't seem to be working correctly. When I display the sorted list, it is not sorted and elements are added, where there is supposed to be 9 there is 49. Anyone see where Im going ...
0
votes
3answers
120 views

C++: Implementing merge sort from scratch

I was trying to test my self and wanted to write mergesort, without actually looking up any code online, and to do it in a certain time period. I am stuck at this point where I cannot simply ...
6
votes
1answer
105 views

Why my two codes work so differently? (Haskell, Merge Sort)

I was writing a code for merge sort (Haskell). I have a question on the function that puts two lists together according to the order. ( i.e. [1,4,7] [2,5,6] -> [1,2,4,5,6,7]) This is my original ...
0
votes
1answer
47 views

MergeSort gives StackOverflow error

this is the code for the mergeSort,this gives an stackoverflow error in line 53 and 54(mergeSort(l,m); and mergeSort(m,h);) Any help will be regarded so valuable,please help me out,i am clueless,Thank ...
0
votes
0answers
29 views

Debug Assertion Fail on Multiple Use of method

I'm writing a program that reads part of a file that contains a list of integers for example: 1 : 8367 2 : 6524 3 : 43736 4 : 223 5 : 13 I'm taking the part of file, and splitting into 2 other ...
0
votes
1answer
62 views

Efficient Mergesort Confusion

I have been reading a mergesort example (the efficient one) since yesterday and I still can't understand how it works despite looking at the code: private static void sort(int[] list) { a = list; ...
0
votes
2answers
37 views

Trouble with Merge Sort Bug

I'm trying to implement merge sort and am getting stuck with the merge function: Here is my function: public static void merge(Comparable[] a, Comparable[] aux, int low, int mid, int hi) { // ...
3
votes
1answer
121 views

Java - Merge sort with Strings

In this program, I am sorting Olympic medals using mergeSort. Something seems a little off with my code since sometimes it will give me an java.lang.ArrayIndexOutOfBoundsException and sometimes, it ...
1
vote
1answer
127 views

Haskell merge sort with two merging functions asc and desc

I would like to make use of the merge sort algorithm. The mergeSort is the main function which awaits the merging function as the first parameter. Does anyone have an idea, where is the issue in my ...
-1
votes
2answers
196 views

MergeSort algorithm in c#

I wrote below code for Merge Class : class Merge { public static void sort(IComparable[] a) { sort(a, 0, a.Length); } public static void sort(IComparable[] a, int low, int ...
-1
votes
2answers
68 views

MergeSort implementation on an array of Pointers

I have an assignment from college to write a program which receives an array of integers and its size and returns a sorted array of Pointers to the original array's values. The sorting must be done by ...
-4
votes
3answers
156 views

Merge Sort Step by Step [closed]

How would a merge sort step by step iteration look? I'm trying to grasp what happens in the merge sort. Ex. How would a list of values such as 25, 64, 22, 46, 20, 65, 90, 66, 48, 98 look step by step ...
0
votes
0answers
231 views

count inversions with non recursive merge sort

This is a homework and I need to count the number of inversions in an array using mergesort. I am supposed to implement both a recursive and an iterative function. The recursive function works just ...
0
votes
2answers
62 views

Merge Sort algorithm Infinite loop

I am trying to create a merge sort algorithm, but when I go to sort the broken down arrays, I enter an infinite loop, the main problem is happening in my merge method below. Thanks in advance for the ...
3
votes
1answer
96 views

Sequential Merge Sort in C

I am trying to re-write a recursive Merge Sort like void MergeSort(int* data, int size){ int half=size/2; if (size > 1) { MergeSort(data, half); MergeSort(data+half, half); ...
0
votes
2answers
55 views

Wrong inversions and duplicate numbers in MergeSort implementation in Java

I'm creating a Java program in which I implement the MergeSort algorithm. My code is the following (so far): public void merge(Integer [] left, Integer[] right, Integer[] a) { int i = 0; ...
0
votes
2answers
57 views

Why does this XQuery (Mergesort) Code Snippet not work correct?

While learning XQuery I'm trying to implement a merge sort. For joining two already sorted sequences into one I wanted to implement a helper function called "merge". It currently looks like this: ...
0
votes
1answer
80 views

mergeSort - destructive vs non destructive in Java

Could anyone explain to me the difference between this non-destructive function implementing the mergeSort algorithm, and a destructive impementation of this function/mergeSort algorithm? public ...
0
votes
1answer
96 views

multithreaded mergesort

I wrote mergesort algorithm, and it works fine. Then i have commented recursive calls of function, and tried to use some boost::threads like this: #include <iostream> #include <vector> ...
0
votes
1answer
50 views

MergeSort printing out weird numbers! Can't track in debugging [closed]

I've made a MergeSort function but it prints strange numbers. When I pass in int arr[12]={5,3,2,7,6,8,9,6,3,5,2,1}; I get "123500085000". I tried to track my Array in the debugger, but am a bit ...
1
vote
1answer
64 views

My mergesort function is spitting out 0's instead of ordering my list

I'm trying to make a Mergesort function and can't seem to understand why my list is printing out "00000100000". I have a feeling it might be my auxiliary array that i'm passing through, but i'd like ...

1 2 3 4 5 8