1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00

[algorithm.lower_bound] Change a bit.

This commit is contained in:
Mitsuru Kariya 2013-08-31 00:57:06 +09:00
parent 3acc1ac301
commit 729c42d081

View file

@ -27,7 +27,7 @@ namespace sprout {
return first == last ? last
: sprout::next(first) == last ? comp(*first, value) ? last : first
: comp(*sprout::next(first, sprout::distance(first, last) / 2), value)
? sprout::lower_bound(sprout::next(first, sprout::distance(first, last) / 2), last, value, comp)
? sprout::lower_bound(sprout::next(first, sprout::distance(first, last) / 2 + 1), last, value, comp)
: sprout::lower_bound(first, sprout::next(first, sprout::distance(first, last) / 2), value, comp)
;
}
@ -37,7 +37,7 @@ namespace sprout {
lower_bound(ForwardIterator first, ForwardIterator last, T const& value) {
return sprout::lower_bound(
first, last, value,
NS_SSCRISK_CEL_OR_SPROUT::less<typename std::iterator_traits<ForwardIterator>::value_type>()
NS_SSCRISK_CEL_OR_SPROUT::less<>()
);
}
} // namespace sprout