README.md
1<h1>BOOST SORT</H1>
2
3<H2>Introduction</h2>
4
5The goal of the Boost Sort Library is provide to the users, the most modern and fast sorting algorithms.
6
7This library provides stable and not stable sorting algorithms, in single thread and parallel versions.
8
9These algorithms do not use any other library or utility. The parallel algorithms need a C++11 compliant compiler.
10
11<h2>Single Thread Algorithms</h2>
12
13
14 | | | | |
15 Algorithm |Stable | Additional memory |Best, average, and worst case | Comparison method |
16 ------------------|-------|----------------------------|-------------------------------|---------------------|
17 spreadsort | no | key_length | N, N sqrt(LogN), | Hybrid radix sort |
18 | | | min(N logN, N key_length) | |
19 pdqsort | no | Log N | N, N LogN, N LogN | Comparison operator |
20 spinsort | yes | N / 2 | N, N LogN, N LogN | Comparison operator |
21 flat_stable_sort | yes |size of the data / 256 + 8K | N, N LogN, N LogN | Comparison operator |
22 | | | | |
23
24
25- **spreadsort** is a novel hybrid radix sort algorithm, extremely fast, designed and developed by Steven Ross.
26
27- **pdqsort** is a improvement of the quick sort algorithm, designed and developed by Orson Peters.
28
29- **spinsort** is a stable sort, fast with random and with near sorted data, designed and developed by Francisco Tapia.
30
31- **flat_stable_sort** stable sort with a small additional memory (around 1% of the size of the data), provide the 80% - 90% of the speed of spinsort, being fast with random and with near sorted data, designed and developed by Francisco Tapia.
32
33
34<h2>Parallel Algorithms</h2>
35
36
37 | | | |
38 Algorithm |Stable | Additional memory |Best, average, and worst case |
39 ----------------------|-------|------------------------|------------------------------|
40 block_indirect_sort | no |block_size * num_threads| N, N LogN , N LogN |
41 sample_sort | yes | N | N, N LogN , N LogN |
42 parallel_stable_sort | yes | N / 2 | N, N LogN , N LogN |
43 | | | |
44
45
46- **Sample_sort** is a implementation of the [Samplesort algorithm](https://en.wikipedia.org/wiki/Samplesort) done by Francisco Tapia.
47
48- **Parallel_stable_sort** is based on the samplesort algorithm, but using a half of the memory used by sample_sort, conceived and implemented by Francisco Tapia.
49
50- **Block_indirect_sort** is a novel parallel sort algorithm, very fast, with low additional memory consumption, conceived and implemented by Francisco Tapia.
51
52The **block_size** is an internal parameter of the algorithm, which in order to achieve the
53highest speed, changes according to the size of the objects to sort according to the next table. The strings use a block_size of 128.
54
55
56 | | | | | | | |
57 object size (bytes) | 1 - 15 | 16 - 31 | 32 - 63 | 64 - 127|128 - 255|256 - 511| 512 - |
58 --------------------------------|--------|---------|---------|---------|---------|---------|----------|
59 block_size (number of elements) | 4096 | 2048 | 1024 | 768 | 512 | 256 | 128 |
60 | | | | | | | |
61
62
63<h2>Installation </h2>
64- This library is **include only**.
65- Don't need to link with any static or dynamic library. Only need a C++11 compiler
66- Only need to include the file boost/sort/sort.hpp
67
68
69<h2>Author and Copyright</h2>
70This library is integrated in the [Boost Library](https://boost.org) .
71
72
73Copyright 2017
74
75- [Steven Ross *(spreadsort@gmail.com)* ](mail:spreadsort@gmail.com)
76- [Francisco Tapia *(fjtapia@gmail.com)* ](mail:fjtapia@gmail.com)
77- [Orson Peters *(orsonpeters@gmail.com)* ](mail:orsonpeters@gmail.com)
78
79Distributed under the [Boost Software License, Version 1.0. ](http://www.boost.org/LICENSE_1_0.txt) (See http://www.boost.org/LICENSE_1_0.txt)
80