Forked from brycelelbach/radix_sort_naive_serial.cpp
Created
September 6, 2019 09:15
-
-
Save qrealka/83bacfb124a13221fa7af2dbdcb95f3a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <typename InputIt, typename OutputIt> | |
OutputIt | |
radix_sort_split(InputIt first, InputIt last, OutputIt output, std::uint64_t bit) | |
{ | |
std::vector<std::uint64_t> e(std::distance(first, last)); | |
// Count 0s. | |
std::transform(first, last, e.begin(), | |
[=] (auto t) { return !(t & (1 << bit)); }); | |
// Count the last one if it's set, as we won't get it on the scan. | |
std::uint64_t total_falses = e.back(); | |
std::exclusive_scan(e.begin(), e.end(), e.begin(), std::uint64_t(0)); | |
total_falses += e.back(); | |
// Compute destination indices. | |
for (std::uint64_t i = 0; i < e.size(); ++i) { | |
if ((first[i] & (1 << bit))) e[i] = i - e[i] + total_falses; | |
} | |
// Scatter. | |
for (std::uint64_t i = 0; i < e.size(); ++i) | |
output[e[i]] = first[i]; | |
return output + e.size(); | |
} | |
int main() { | |
constexpr std::uint64_t element_bits = sizeof(std::uint64_t) * CHAR_BIT; | |
std::vector<std::uint64_t> u = { | |
0b100, 0b111, 0b010, 0b110, 0b011, 0b101, 0b001, 0b000 | |
}; | |
for (std::uint64_t i = 0; i < u.size(); ++i) | |
std::cout << std::bitset<element_bits>(u[i]) << " " << u[i] << "\n"; | |
std::cout << "\n"; | |
std::vector<std::uint64_t> v(u.size()); | |
std::uint64_t bit = 0; | |
do { | |
radix_sort_split(u.begin(), u.end(), v.begin(), bit++); | |
for (std::uint64_t i = 0; i < v.size(); ++i) | |
std::cout << std::bitset<element_bits>(v[i]) << " " << v[i] << "\n"; | |
std::cout << "\n"; | |
std::swap(u, v); | |
} while (bit < element_bits && !std::is_sorted(u.begin(), u.end())); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment