mirror of
https://github.com/monero-project/monero.git
synced 2025-05-07 06:35:02 -04:00
Fix overflow issue in epee:misc_utils::rolling_median_t and median(), with unit test
This commit is contained in:
parent
5d850dde99
commit
85efc88c1e
3 changed files with 23 additions and 2 deletions
|
@ -106,6 +106,14 @@ namespace misc_utils
|
|||
return true;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
T get_mid(const T &a, const T &b)
|
||||
{
|
||||
//returns the average of two numbers; overflow safe and works with at least all integral and floating point types
|
||||
//(a+b)/2 = (a/2) + (b/2) + ((a - 2*(a/2)) + (b - 2*(b/2)))/2
|
||||
return (a/2) + (b/2) + ((a - 2*(a/2)) + (b - 2*(b/2)))/2;
|
||||
}
|
||||
|
||||
template<class type_vec_type>
|
||||
type_vec_type median(std::vector<type_vec_type> &v)
|
||||
{
|
||||
|
@ -122,7 +130,7 @@ namespace misc_utils
|
|||
return v[n];
|
||||
}else
|
||||
{//2, 4, 6...
|
||||
return (v[n-1] + v[n])/2;
|
||||
return get_mid<type_vec_type>(v[n-1],v[n]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue