Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
6k views

How to sort in-place using the merge sort algorithm?

I know the question is not too specific. All I want is someone to tell me how to convert a normal merge sort into an in-place merge sort (or a merge sort with constant extra space overhead). All I ...
17
votes
3answers
763 views

why is merge sort preferred over quick sort for sorting linked lists

I read the following in a forum : Merge sort is very efficient for immutable datastructures like linked lists and Quick sort is typically faster than merge sort when the data is stored ...
16
votes
2answers
362 views

Why does Java 6 Arrays#sort(Object[]) change from mergesort to insertionsort for small arrays?

Java 6's mergesort implementation in Arrays.java uses an insertion-sort if the array length is less than some threshold. This value is hard-coded to 7. As the algorithm is recursive, this eventually ...
14
votes
3answers
483 views

Regarding in-place merge in an array

I came across the following question. Given an array of n elements and an integer k where k < n. Elements {a0...ak} and {ak+1...an} are already sorted. Give an algorithm to sort in O(n) time and ...
12
votes
2answers
112 views

Sorting a linked list in Java

I have written a bubble sort algorithm to sort a linked list. I am a Java beginner and trying to learn data structures. I am confused why my second element is not sorted properly. EDIT class ...
12
votes
4answers
2k views

Merge sort in Haskell

I am new to Haskell and I am trying to implement a few known algorithms in it. I have implemented merge sort on strings. I am a bit disappointed with the performance of my Haskell implementation ...
12
votes
13answers
13k views

Merge Sort a Linked List

I was recently brushing up on some fundamentals and found merge sorting a linked list to be a pretty good challenge. If you have a good implementation then show it off here.
11
votes
3answers
302 views

Why is an even-odd split 'faster' for MergeSort?

MergeSort is a divide-and-conquer algorithm that divides the input into several parts and solves the parts recursively. ...There are several approaches for the split function. One way is to ...
11
votes
6answers
7k views

Correctly multithreaded quicksort or mergesort algo in Java?

Do you know of any library that would provide a well-tested concurrent quicksort or mergesort algorithm for Java? We've had issues on a 16-(virtual)-cores Mac where only one core (!) was working ...
10
votes
3answers
662 views

How to merge two sorted arrays into a sorted array?

This was asked of me in an interview and this is the solution i provided: public static int[] merge(int[] a, int[] b) { int[] answer = new int[a.length + b.length]; int i = 0, j = 0, k = 0; ...
9
votes
13answers
3k views

Quicksort slower than Mergesort?

I was working on implementing a quicksort yesterday, and then I ran it, expecting a faster runtime than the Mergesort (which I had also implemented). I ran the two, and while the quicksort was faster ...
8
votes
5answers
3k views

sorting a doubly linked list with merge sort

Hi I have found this code in the internet and it was for arrays ,I want to change it for doubly linked list(instead of index we should use pointer) would you please help me that how can i change merge ...
7
votes
2answers
280 views

No speedup with naive merge sort parallelization in Haskell

Note: This post was completely rewritten 2011-06-10; thanks to Peter for helping me out. Also, please don't be offended if I don't accept one answer, since this question seems to be rather open-ended. ...
7
votes
3answers
350 views

dynamically increasing java heap space

I have written a java program that tests the speed of a couple of multi-threading algorithms on different machines with various numbers of processors. On some machines, merge sort* fails because it ...
6
votes
3answers
2k views

fast, clean, C, timsort implementation?

Does anyone know of a clean C/C++ implementation of timsort? The Python sources contain a description and code for the original timsort, but it is understandably full of python-specific calls. ...
5
votes
1answer
229 views

Non-recursive merge sort with two nested loops - how?

First question here, and yes this is a homework question. We are tasked with performing merge sort on an array (which I am familiar with), but in a way I am unsure of how to do. Usually I would have a ...
5
votes
1answer
460 views

Prove running time of optimized mergesort is theta(NK + Nlog(N/K))?

Okay, I know Mergesort has a worst case time of theta(NlogN) but its overhead is high and manifests near the bottom of the recursion tree where the merges are made. Someone proposed that we stop the ...
5
votes
6answers
328 views

How can I parallel-ize an algorithm on a machine with multiple processors?

Intel Core2Duo, for example is supposed to have a single die but two cores. So, it should be possible to control what is processed on which core, which means that it is possible to instruct my ...
5
votes
5answers
2k views

Number of Comparisons using merge sort

If you have 5 distinct numbers, how many comparisons at most do you need to sort this using merge sort?
4
votes
3answers
71 views

Why is this merge sort implementation not working?

The following is my implementation of merge sort. private static void mergeSort(int[] a, int low , int high,int[] res) { int mid = (low + high) /2; if (low < high) { ...
4
votes
8answers
291 views

How to refactor this routine to avoid the use of recursion?

So I was writing a mergesort in C# as an exercise and although it worked, looking back at the code, there was room for improvement. Basically, the second part of the algorithm requires a routine to ...
4
votes
4answers
6k views

What sort does Java Collections.sort(nodes) use?

I think it is MergeSort, which is O(n log n). However, the following output disagrees: -1,0000000099000391,0000000099000427 1,0000000099000427,0000000099000346 5,0000000099000391,0000000099000346 ...
3
votes
1answer
113 views

How does one iteratively write merge sort?

I have written a recursive version of merge sort. It makes use of a separate merge routine: def merge(lst1, lst2): i = j = 0 merged = [] while i < len(lst1) and j < len(lst2): ...
3
votes
3answers
135 views

Exactly how many comparisons does merge sort make?

I have read that quicksort is much faster than mergesort in practise, and the reason for this is the hidden constant. Well, the solution for the randomized quick sort complexity is 2nlnn=1.39nlogn ...
3
votes
3answers
171 views

How to speed up external merge sort in Java

I am writing code for the external merge sort. The idea is that the input files contain too many numbers to be stored in an array so you read some of it and put it into files to be stored. Here's my ...
3
votes
3answers
102 views

Why is insertion sort always beating merge sort in this implementation?

I don't understand: why is my insertion sort implementation beating merge sort every time, for any size of n? public List<Int32> InsertionSort(List<Int32> elements, Boolean ascending ...
3
votes
2answers
135 views

Why is merge sort worst case run time O (n log n)?

Can someone explain to me in simple English or an easy way to explain it?
3
votes
2answers
236 views

Merge sort application

I'm doing an exercise where given an array of N values, I need to get the two numbers that their subtraction (the highest - the lowest) is the most positive number. I want v to be larger than c... the ...
3
votes
1answer
288 views

Realize worker-threads for merge sort algorithm

I have a single-thread version of the merge sort http://pastebin.com/2uMGjTxr It creates an array, fills it with random numbers and calles the sort method on it that performs the merge sort: private ...
3
votes
1answer
145 views

How to determine optimal file size for merge sort?

Most of you will realize this, but to me it came a bit as a surprise: it's way faster to sort (for example) 96 files each size 4Mb than 6 files of 64Mb using mergesort (holding the total amount of ...
3
votes
2answers
492 views

Mergesort running time BigO

Snape’s “Unfriendly Algorithms for Wizards” textbook claims the running time of merge sort is O(n^4). Is this claim correct? Solution: Yes. This claim is technically correct, because O(n^4) only ...
3
votes
5answers
556 views

How to optimize merge sort?

I've two files of 1 GB each containing only numbers in sorted order. Now I know how to read the contents of the files and sort them using merge sort algorithm and output it into an another file but ...
3
votes
4answers
394 views

A prepared statement, `WHERE .. IN(..)` query and sorting — with MySQL

Imagine we have a query: SELECT * FROM somewhere WHERE `id` IN(1,5,18,25) ORDER BY `name`; and an array of IDs to fetch: $ids = array(1,5,18,25) With prepared statements it's adviced to prepare ...
3
votes
1answer
314 views

Mergesort - std::bad_alloc thrown when trying to assign vector

Good afternoon ladies and gents. So, it is not my day for errors. Implementing Mergesort (not in-place) in C++, and I'm having real trouble with the code, with no idea why. The second-to-last line of ...
3
votes
4answers
473 views

Arrays.sort(Object[] a) - how is it implemented?

Are there any resources on how the mergeSort used by Arrays.sort(Object[] a) is implemented? While it is documented quite good, I have a hard time understanding it (especially why the src and dest are ...
3
votes
2answers
1k views

Python class to merge sorted files, how can this be improved?

Background: I'm cleaning large (cannot be held in memory) tab-delimited files. As I clean the input file, I build up a list in memory; when it gets to 1,000,000 entries (about 1GB in memory) I sort ...
2
votes
1answer
57 views

Common Lisp merge sort breaking down

To make a long story short: my algorithms class is too easy, so I've challenged myself to do all assignments in Common Lisp (for a few, specific reasons). I'm into day one of learning lisp and I've ...
2
votes
3answers
60 views

Base condition in merge sort

I am trying to implement merge sort and I have trouble implementing the base condition. I have a function merge which takes in two sorted arrays are returns a merged array. int[] ...
2
votes
3answers
92 views

getting mergesort to work on linked-list?

Apologies if this is a silly / simple question.. but I'm very lost. I'm having trouble getting this program to run. I've written this program to read in 2 values, the first being a number of elements ...
2
votes
1answer
83 views

merged merge sort in Java

I had to write a merge sort function in Java. No problem. Well, a little, but I got through it. Then the follow up question I didn't get. Question: Given an array A[][] such that A[i][0] is a float ...
2
votes
4answers
154 views

How to perform merge sort using LINQ?

Assume that you have two IEnumerbale objects. How we can merge them (in some condition e.g merge in merge sort ...) and create a unique IEnumerable? I tried this with Zip, but in Zip the two list ...
2
votes
4answers
325 views

Why is my MergeSort so slow in Python?

I'm having some troubles understanding this behaviour. I'm measuring the execution time with the timeit-module and get the following results for 10000 cycles: Merge : 1.22722930395 Bubble: ...
2
votes
2answers
105 views

Unusual Merge Sort Failure

I have an unusual problem. I've been implementing Merge Sort and have an interesting problem. The method works correctly except on the last pass. Given a random Integer array as input returns an ...
2
votes
1answer
169 views

Run Time Error During Merge Sort

i keep getting a runtime error every time i run this code, the algorithm seems to be right, i am using long values instead of integers because the array's size is large. so what seems to be the ...
2
votes
3answers
117 views

Can someone tell me what's wrong with my mergesort?

Can someone tell me what's wrong with my mergesort implementation below? I've been scratching my head for hours.. void merge(int arr[], int low, int mid, int high) { int i = 0; int j = 0; ...
2
votes
1answer
824 views

How to compute the algorithmic space complexity

i am reviewing my data structures and algorithm analysis lesson,and i get a question that how to determine to the space complexity of merge sort and quick sort algorithms ? The depth of recursion ...
2
votes
1answer
227 views

Space requirements of a merge-sort

I'm trying to understand the space requirements for a Mergesort, O(n). I see that time requirements are basically, amount of levels(logn) * merge(n) so that makes (n log n). Now, we are still ...
2
votes
3answers
670 views

Improving I/O performance in C++ programs[external merge sort]

I am currently working on a project involving external merge-sort using replacement-selection and k-way merge. I have implemented the project in C++[runs on linux]. Its very simple and right now deals ...
2
votes
4answers
400 views

Problem with Mergesort in C++

vector<int>& mergesort(vector<int> &a) { if (a.size() == 1) return a; int middle = a.size() / 2; vector<int>::const_iterator first = a.begin(); ...
2
votes
4answers
310 views

Implementing a mergesort without using an additional array?

I've read a lot about mergesort recently and I wonder if there is a way to do a mergesort without using at least one additional array. Is it possible?

1 2 3