-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterm_impl.hh
30 lines (25 loc) · 882 Bytes
/
term_impl.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef TERM_IMPL_H
#define TERM_IMPL_H
#include <array>
namespace term {
// Numerically sort array1, and reorder array2 the same way.
template <long unsigned int N>
void SyncSortTwoArrays(::std::array<int, N> *array1,
::std::array<double, N> *array2, int index) {
if ((N - 1) == static_cast<long unsigned int>(index)) {
return;
}
if ((*array1)[index] > (*array1)[index + 1]) {
std::swap((*array1)[index + 1], (*array1)[index]);
std::swap((*array2)[index + 1], (*array2)[index]);
}
// index++ below resulted in stack overflow.
SyncSortTwoArrays(array1, array2, ++index);
// Elements at index and index+1 are now sorted, but elements at index and
// index-1 may be out of order.
if ((index >= 1) && ((*array1)[index - 1] > (*array1)[index])) {
SyncSortTwoArrays(array1, array2, --index);
}
}
} // namespace term
#endif