EnTT 3.13.0
Loading...
Searching...
No Matches
algorithm.hpp
1#ifndef ENTT_CORE_ALGORITHM_HPP
2#define ENTT_CORE_ALGORITHM_HPP
3
4#include <algorithm>
5#include <functional>
6#include <iterator>
7#include <utility>
8#include <vector>
9#include "utility.hpp"
10
11namespace entt {
12
21struct std_sort {
35 template<typename It, typename Compare = std::less<>, typename... Args>
36 void operator()(It first, It last, Compare compare = Compare{}, Args &&...args) const {
37 std::sort(std::forward<Args>(args)..., std::move(first), std::move(last), std::move(compare));
38 }
39};
40
54 template<typename It, typename Compare = std::less<>>
55 void operator()(It first, It last, Compare compare = Compare{}) const {
56 if(first < last) {
57 for(auto it = first + 1; it < last; ++it) {
58 auto value = std::move(*it);
59 auto pre = it;
60
61 for(; pre > first && compare(value, *(pre - 1)); --pre) {
62 *pre = std::move(*(pre - 1));
63 }
64
65 *pre = std::move(value);
66 }
67 }
68 }
69};
70
76template<std::size_t Bit, std::size_t N>
77struct radix_sort {
78 static_assert((N % Bit) == 0, "The maximum number of bits to sort must be a multiple of the number of bits processed per pass");
79
95 template<typename It, typename Getter = identity>
96 void operator()(It first, It last, Getter getter = Getter{}) const {
97 if(first < last) {
98 constexpr auto passes = N / Bit;
99
100 using value_type = typename std::iterator_traits<It>::value_type;
101 std::vector<value_type> aux(std::distance(first, last));
102
103 auto part = [getter = std::move(getter)](auto from, auto to, auto out, auto start) {
104 constexpr auto mask = (1 << Bit) - 1;
105 constexpr auto buckets = 1 << Bit;
106
107 std::size_t index[buckets]{};
108 std::size_t count[buckets]{};
109
110 for(auto it = from; it != to; ++it) {
111 ++count[(getter(*it) >> start) & mask];
112 }
113
114 for(std::size_t pos{}, end = buckets - 1u; pos < end; ++pos) {
115 index[pos + 1u] = index[pos] + count[pos];
116 }
117
118 for(auto it = from; it != to; ++it) {
119 out[index[(getter(*it) >> start) & mask]++] = std::move(*it);
120 }
121 };
122
123 for(std::size_t pass = 0; pass < (passes & ~1); pass += 2) {
124 part(first, last, aux.begin(), pass * Bit);
125 part(aux.begin(), aux.end(), first, (pass + 1) * Bit);
126 }
127
128 if constexpr(passes & 1) {
129 part(first, last, aux.begin(), (passes - 1) * Bit);
130 std::move(aux.begin(), aux.end(), first);
131 }
132 }
133 }
134};
135
136} // namespace entt
137
138#endif
EnTT default namespace.
Definition dense_map.hpp:21
Function object for performing insertion sort.
Definition algorithm.hpp:42
void operator()(It first, It last, Compare compare=Compare{}) const
Sorts the elements in a range.
Definition algorithm.hpp:55
Function object for performing LSD radix sort.
Definition algorithm.hpp:77
void operator()(It first, It last, Getter getter=Getter{}) const
Sorts the elements in a range.
Definition algorithm.hpp:96
Function object to wrap std::sort in a class type.
Definition algorithm.hpp:21
void operator()(It first, It last, Compare compare=Compare{}, Args &&...args) const
Sorts the elements in a range.
Definition algorithm.hpp:36