/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_ALGORITHM_NEXT_DIFFERENCE_HPP #define SPROUT_ALGORITHM_NEXT_DIFFERENCE_HPP #include #include #include #include #include namespace sprout { // // next_difference // // recursion depth: // O(log(N1+N2)) // template inline SPROUT_CONSTEXPR sprout::pair next_difference( InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, Compare comp ) { typedef sprout::pair type; return first1 == last1 ? type(last1, last2) : sprout::find_difference(sprout::next(first1), last1, first2, last2, comp) ; } template inline SPROUT_CONSTEXPR sprout::pair next_difference( InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2 ) { return sprout::next_difference(first1, last1, first2, last2, sprout::less<>()); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_NEXT_DIFFERENCE_HPP