sort_array.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. /*************************************************************************/
  2. /* sort_array.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef SORT_ARRAY_H
  31. #define SORT_ARRAY_H
  32. #include "core/error_macros.h"
  33. #include "core/typedefs.h"
  34. #define ERR_BAD_COMPARE(cond) \
  35. if (unlikely(cond)) { \
  36. ERR_PRINT("bad comparison function; sorting will be broken"); \
  37. break; \
  38. }
  39. template <class T>
  40. struct _DefaultComparator {
  41. _FORCE_INLINE_ bool operator()(const T &a, const T &b) const { return (a < b); }
  42. };
  43. #ifdef DEBUG_ENABLED
  44. #define SORT_ARRAY_VALIDATE_ENABLED true
  45. #else
  46. #define SORT_ARRAY_VALIDATE_ENABLED false
  47. #endif
  48. template <class T, class Comparator = _DefaultComparator<T>, bool Validate = SORT_ARRAY_VALIDATE_ENABLED>
  49. class SortArray {
  50. enum {
  51. INTROSORT_THRESHOLD = 16
  52. };
  53. public:
  54. Comparator compare;
  55. inline const T &median_of_3(const T &a, const T &b, const T &c) const {
  56. if (compare(a, b))
  57. if (compare(b, c))
  58. return b;
  59. else if (compare(a, c))
  60. return c;
  61. else
  62. return a;
  63. else if (compare(a, c))
  64. return a;
  65. else if (compare(b, c))
  66. return c;
  67. else
  68. return b;
  69. }
  70. inline int bitlog(int n) const {
  71. int k;
  72. for (k = 0; n != 1; n >>= 1)
  73. ++k;
  74. return k;
  75. }
  76. /* Heap / Heapsort functions */
  77. inline void push_heap(int p_first, int p_hole_idx, int p_top_index, T p_value, T *p_array) const {
  78. int parent = (p_hole_idx - 1) / 2;
  79. while (p_hole_idx > p_top_index && compare(p_array[p_first + parent], p_value)) {
  80. p_array[p_first + p_hole_idx] = p_array[p_first + parent];
  81. p_hole_idx = parent;
  82. parent = (p_hole_idx - 1) / 2;
  83. }
  84. p_array[p_first + p_hole_idx] = p_value;
  85. }
  86. inline void pop_heap(int p_first, int p_last, int p_result, T p_value, T *p_array) const {
  87. p_array[p_result] = p_array[p_first];
  88. adjust_heap(p_first, 0, p_last - p_first, p_value, p_array);
  89. }
  90. inline void pop_heap(int p_first, int p_last, T *p_array) const {
  91. pop_heap(p_first, p_last - 1, p_last - 1, p_array[p_last - 1], p_array);
  92. }
  93. inline void adjust_heap(int p_first, int p_hole_idx, int p_len, T p_value, T *p_array) const {
  94. int top_index = p_hole_idx;
  95. int second_child = 2 * p_hole_idx + 2;
  96. while (second_child < p_len) {
  97. if (compare(p_array[p_first + second_child], p_array[p_first + (second_child - 1)]))
  98. second_child--;
  99. p_array[p_first + p_hole_idx] = p_array[p_first + second_child];
  100. p_hole_idx = second_child;
  101. second_child = 2 * (second_child + 1);
  102. }
  103. if (second_child == p_len) {
  104. p_array[p_first + p_hole_idx] = p_array[p_first + (second_child - 1)];
  105. p_hole_idx = second_child - 1;
  106. }
  107. push_heap(p_first, p_hole_idx, top_index, p_value, p_array);
  108. }
  109. inline void sort_heap(int p_first, int p_last, T *p_array) const {
  110. while (p_last - p_first > 1) {
  111. pop_heap(p_first, p_last--, p_array);
  112. }
  113. }
  114. inline void make_heap(int p_first, int p_last, T *p_array) const {
  115. if (p_last - p_first < 2)
  116. return;
  117. int len = p_last - p_first;
  118. int parent = (len - 2) / 2;
  119. while (true) {
  120. adjust_heap(p_first, parent, len, p_array[p_first + parent], p_array);
  121. if (parent == 0)
  122. return;
  123. parent--;
  124. }
  125. }
  126. inline void partial_sort(int p_first, int p_last, int p_middle, T *p_array) const {
  127. make_heap(p_first, p_middle, p_array);
  128. for (int i = p_middle; i < p_last; i++)
  129. if (compare(p_array[i], p_array[p_first]))
  130. pop_heap(p_first, p_middle, i, p_array[i], p_array);
  131. sort_heap(p_first, p_middle, p_array);
  132. }
  133. inline void partial_select(int p_first, int p_last, int p_middle, T *p_array) const {
  134. make_heap(p_first, p_middle, p_array);
  135. for (int i = p_middle; i < p_last; i++)
  136. if (compare(p_array[i], p_array[p_first]))
  137. pop_heap(p_first, p_middle, i, p_array[i], p_array);
  138. }
  139. inline int partitioner(int p_first, int p_last, T p_pivot, T *p_array) const {
  140. const int unmodified_first = p_first;
  141. const int unmodified_last = p_last;
  142. while (true) {
  143. while (compare(p_array[p_first], p_pivot)) {
  144. if (Validate) {
  145. ERR_BAD_COMPARE(p_first == unmodified_last - 1);
  146. }
  147. p_first++;
  148. }
  149. p_last--;
  150. while (compare(p_pivot, p_array[p_last])) {
  151. if (Validate) {
  152. ERR_BAD_COMPARE(p_last == unmodified_first);
  153. }
  154. p_last--;
  155. }
  156. if (!(p_first < p_last))
  157. return p_first;
  158. SWAP(p_array[p_first], p_array[p_last]);
  159. p_first++;
  160. }
  161. }
  162. inline void introsort(int p_first, int p_last, T *p_array, int p_max_depth) const {
  163. while (p_last - p_first > INTROSORT_THRESHOLD) {
  164. if (p_max_depth == 0) {
  165. partial_sort(p_first, p_last, p_last, p_array);
  166. return;
  167. }
  168. p_max_depth--;
  169. int cut = partitioner(
  170. p_first,
  171. p_last,
  172. median_of_3(
  173. p_array[p_first],
  174. p_array[p_first + (p_last - p_first) / 2],
  175. p_array[p_last - 1]),
  176. p_array);
  177. introsort(cut, p_last, p_array, p_max_depth);
  178. p_last = cut;
  179. }
  180. }
  181. inline void introselect(int p_first, int p_nth, int p_last, T *p_array, int p_max_depth) const {
  182. while (p_last - p_first > 3) {
  183. if (p_max_depth == 0) {
  184. partial_select(p_first, p_nth + 1, p_last, p_array);
  185. SWAP(p_first, p_nth);
  186. return;
  187. }
  188. p_max_depth--;
  189. int cut = partitioner(
  190. p_first,
  191. p_last,
  192. median_of_3(
  193. p_array[p_first],
  194. p_array[p_first + (p_last - p_first) / 2],
  195. p_array[p_last - 1]),
  196. p_array);
  197. if (cut <= p_nth)
  198. p_first = cut;
  199. else
  200. p_last = cut;
  201. }
  202. insertion_sort(p_first, p_last, p_array);
  203. }
  204. inline void unguarded_linear_insert(int p_last, T p_value, T *p_array) const {
  205. int next = p_last - 1;
  206. while (compare(p_value, p_array[next])) {
  207. if (Validate) {
  208. ERR_BAD_COMPARE(next == 0);
  209. }
  210. p_array[p_last] = p_array[next];
  211. p_last = next;
  212. next--;
  213. }
  214. p_array[p_last] = p_value;
  215. }
  216. inline void linear_insert(int p_first, int p_last, T *p_array) const {
  217. T val = p_array[p_last];
  218. if (compare(val, p_array[p_first])) {
  219. for (int i = p_last; i > p_first; i--)
  220. p_array[i] = p_array[i - 1];
  221. p_array[p_first] = val;
  222. } else
  223. unguarded_linear_insert(p_last, val, p_array);
  224. }
  225. inline void insertion_sort(int p_first, int p_last, T *p_array) const {
  226. if (p_first == p_last)
  227. return;
  228. for (int i = p_first + 1; i != p_last; i++)
  229. linear_insert(p_first, i, p_array);
  230. }
  231. inline void unguarded_insertion_sort(int p_first, int p_last, T *p_array) const {
  232. for (int i = p_first; i != p_last; i++)
  233. unguarded_linear_insert(i, p_array[i], p_array);
  234. }
  235. inline void final_insertion_sort(int p_first, int p_last, T *p_array) const {
  236. if (p_last - p_first > INTROSORT_THRESHOLD) {
  237. insertion_sort(p_first, p_first + INTROSORT_THRESHOLD, p_array);
  238. unguarded_insertion_sort(p_first + INTROSORT_THRESHOLD, p_last, p_array);
  239. } else {
  240. insertion_sort(p_first, p_last, p_array);
  241. }
  242. }
  243. inline void sort_range(int p_first, int p_last, T *p_array) const {
  244. if (p_first != p_last) {
  245. introsort(p_first, p_last, p_array, bitlog(p_last - p_first) * 2);
  246. final_insertion_sort(p_first, p_last, p_array);
  247. }
  248. }
  249. inline void sort(T *p_array, int p_len) const {
  250. sort_range(0, p_len, p_array);
  251. }
  252. inline void nth_element(int p_first, int p_last, int p_nth, T *p_array) const {
  253. if (p_first == p_last || p_nth == p_last)
  254. return;
  255. introselect(p_first, p_nth, p_last, p_array, bitlog(p_last - p_first) * 2);
  256. }
  257. };
  258. #endif // SORT_ARRAY_H