Archive | June 13th, 2012

Merge Sort implementation using Fork-Join Framework in Java 7

June 13, 2012

1 Comment

In our previous post we went through the basics of Fork-Join Framework introduced as part of Java 7. In this post lets apply the same Fork-Join to implement Merge sort algorithm. The pseudo code for Merge sort can be found here. In summary the Merge sort algorithm: 1. Divides the array into 1 parts 2. [...]

email