Tagged Questions

13
votes
3answers
718 views

Inferred type appears to detect an infinite loop, but what’s really happening?

In Andrew Koenig's An anecdote about ML type inference, the author uses merge sort as a learning exercise for ML and is pleased to find an "incorrect" type inference: Much to my surprise, the …
8
votes
4answers
429 views

Merge sort in Haskell

Hi, 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 …
6
votes
19answers
1k 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 …
4
votes
5answers
320 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?
2
votes
2answers
286 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
5answers
533 views

How far does recursion execute into your function in C++?

I've written recursive functions with the guidance of a friend who is teaching me C++ (as a first language). However, I don't really understand what is going on. He helped me (and the SO community, as …
1
vote
1answer
263 views

Merge Sort Java

Hi. I am trying to make a merge sort method, but it keeps on giving the wrong sorts. Where do I have change to make it actually sort the array? What part of the code has to be different? Thank you for …
1
vote
3answers
74 views

merge sort without extra memory

is there any condition in which merge sort can be done without extra memory my prof said it has and he will give bonus point on that.
1
vote
2answers
292 views

Non-Recursive Merge Sort

Can someone explain in English how does Non-Recursive merge sort works ? Thanks
1
vote
4answers
2k 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 …
1
vote
7answers
2k 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.
0
votes
0answers
35 views

why in place merge sort not stable? [closed]

Possible Duplicate: why is in place merge sort not stable? I wrote a simple implementation that is very similar to normal merge sort (using additional memory) but adds complexity. I don't …
0
votes
2answers
145 views

why is in place merge sort not stable?

The implementation below is stable as it used <= instead of < at line marked XXX. This also makes it more efficient. Is there any reason to use < and not <= at this line? /** class for In …
0
votes
2answers
71 views

help with template mergesort function

error C2065:'temp' : undeclared identifier i know that for "temp" i need to declare the type that the array is like int temp[] but what if i don't know what it is.. it could be int or string or …
0
votes
5answers
149 views

How do I use merge sort to delete duplicates?

I use recursive merge sort for sorting a link list, but during the merge sort I would like to delete duplicates. Anyone has insight in how to accomplish this? I am using C code.

1 2 next
15 30 50 per page