|
Avionics
Core avionics package for CURE flight computers
|
#include <algorithm>#include <cstdint>#include <vector>

Go to the source code of this file.
Classes | |
| class | CircularArray< T > |
| Fixed-size circular buffer with median helper and head tracking. More... | |
Functions | |
| template<typename T> | |
| int | partition (std::vector< T > &array, int left, int right, int pivotIndex) |
| template<typename T> | |
| T | quickSelect (std::vector< T > &array, int left, int right, int k) |
| int partition | ( | std::vector< T > & | array, |
| int | left, | ||
| int | right, | ||
| int | pivotIndex ) |
Definition at line 9 of file CircularArray.h.
| T quickSelect | ( | std::vector< T > & | array, |
| int | left, | ||
| int | right, | ||
| int | k ) |
Definition at line 30 of file CircularArray.h.