Giter Site home page Giter Site logo

multi-threaded-in-place-quicksort's Introduction

To compile, you can either use javac and do everything manually or you can use the included buildfile with Apache Buildr. Going with Apache Buildr simply run buildr test which will automatically run buildr compile if needed and then run the unit tests using JUnit 4.

Please note that this implementation targets Java 6 and therefore does not use the Fork/Join framework.

This implementation is designed to spawn threads up to a certain threshold and then fall back to recursion in order to avoid the overhead of constant context switching. Here are some sample outputs from the largeTestSort method (output will vary since sorted values are different every time):

:::text
Generation time: 887 (10000000 Integer Objects)
Copy time: 7
Java built in implementation: 4115
Multi-threaded quick sort: 1599

Generation time: 866 (10000000 Integer Objects)
Copy time: 7
Java built in implementation: 4158
Multi-threaded quick sort: 1491

Generation time: 875 (10000000 Integer Objects)
Copy time: 7
Java built in implementation: 4062
Multi-threaded quick sort: 1451

multi-threaded-in-place-quicksort's People

Contributors

knpwrs avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.