Nuestros mejores investigadores agotaron sus provisiones de café, buscando todo el tiempo por la resolución, hasta que Armando encontró el hallazgo en Bitbucket por lo tanto en este momento la comparte contigo.
Ejemplo: límite_inferior c++
// lower_bound/upper_bound example#include // std::cout#include // std::lower_bound, std::upper_bound, std::sort#include // std::vectorintmain()int myints[]=10,20,30,30,20,10,10,20;
std::vector<int>v(myints,myints+8);// 10 20 30 30 20 10 10 20
std::sort(v.begin(), v.end());// 10 10 10 20 20 20 30 30
std::vector<int>::iterator low,up;
low=std::lower_bound(v.begin(), v.end(),20);// ^
up= std::upper_bound(v.begin(), v.end(),20);// ^
std::cout <<"lower_bound at position "<<(low- v.begin())<<'n';
std::cout <<"upper_bound at position "<<(up - v.begin())<<'n';return0;// Output// lower_bound at position 3// upper_bound at position 6
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)