Skip to content
Advertisement

Java Top-Down Merge Sort – Stackoverflow Error

I am trying to implement the top-down merge sort algorithm in Java, using the pseudocode from Wikipedia.

My problem is that my code sometimes throws a StackOverflowError, but not always. I have checked that my code matches the pseudocode several times and cannot find what is wrong with it.

Here is my Java code:

JavaScript

Advertisement

Answer

Your algorithm encounters issues when there are duplicate elements, as indexOf will only return the index of the first one. Use a index-based for loop instead. Demo

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement