Archive for the ‘Java’ Category
JSR-166: The Java fork/join Framework
The JSR-166 are concurrent utilities that were included in Java 5. The fork/join framework was a piece of it that didn’t make it into Java 5. After all this time the fork/join framework is finally making it into JDK 7. What surprised me about the framework is that it is so easy to use. The […]
In: Java · Tagged with: sorting, threading
Sort Optimization (Part 2) with JDK 6 vs JDK 7
In part 1, I went over my first foray into the world of sorting algorithms. Since then, I’ve had some other ideas on how to improve my quicksort implementation. One idea that I had while originally working on the sorting algorithm, was to rework the partition function to take into account duplicate elements. I had […]
In: Java · Tagged with: benchmarks, shootout, sorting
Sorting Algorithm Shootout
Since I did my Sort Optimization post, I’ve been keeping an eye on things that happen in the sorting world. Recently an article popped up on Reddit about someone wanting to replace the JDK sorting algorithm with a Dual Pivot Quick Sort. This lead to the discovery that Tim Sort would be replacing Merge Sort […]
In: Java · Tagged with: shootout, sorting
Regular Expressions Review
A hobby of mine is to learn new programming languages. I try and learn at least one a year, and use it for more than just a hello world app. So this year is the year of python, where if I’m required to write a script Python is the go to guy. Having that said, […]
In: Java, Python, Ruby · Tagged with: regular expressions
Sort Optimization
This all started one night when I was in the #JRuby channel on irc.freenode.net. A channel user was complaining about JRuby’s sorting algorithm being slow. I thought to myself, I should be able to speed it up. At the time I was thinking since sorting has been so well researched it’d likely be easy to […]
In: Java, Ruby · Tagged with: benchmarks, jruby, optimization, sorting