std::mismatch
Заголовочный файл <algorithm>
|
||
template< class InputIt1, class InputIt2 > std::pair<InputIt1,InputIt2> |
(1) | |
template< class InputIt1, class InputIt2, class BinaryPredicate > std::pair<InputIt1,InputIt2> |
(2) | |
Возвращает пару первых несовпадающих элементов из двух диапазонов: один, определяемый [first1, last1)
, и другой, начинающийся с first2
. Первый вариант функции использует operator==
для сравнения элементов, второй вариант использует заданный бинарный предикат p
.
Содержание |
[править] Параметры
first1, last1 | - | первый диапазон элементов | |||||||||
first2 | - | начало второго диапазона элементов | |||||||||
p | - | binary predicate which returns true if the elements should be treated as equal. The signature of the predicate function should be equivalent to the following:
The signature does not need to have const &, but the function must not modify the objects passed to it. | |||||||||
Type requirements | |||||||||||
-InputIt1 must meet the requirements of InputIterator .
| |||||||||||
-InputIt2 must meet the requirements of InputIterator .
| |||||||||||
-OutputIt must meet the requirements of OutputIterator .
|
[править] Возвращаемое значение
std::pair с итераторами на первые два неэквивалентных элемента или, если различных элементов не найдено, пара с last1
и соответствующим итератором из второго диапазона.
[править] Сложность
Не больше last1
- first1
применений предиката.
[править] Возможная реализация
First version |
---|
template<class InputIt1, class InputIt2> std::pair<InputIt1, InputIt2> mismatch(InputIt1 first1, InputIt1 last1, InputIt2 first2) { while (first1 != last1 && *first1 == *first2) { ++first1, ++first2; } return std::make_pair(first1, first2); } |
Second version |
template<class InputIt1, class InputIt2, class BinaryPredicate> std::pair<InputIt1, InputIt2> mismatch(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) { while (first1 != last1 && p(*first1, *first2)) { ++first1, ++first2; } return std::make_pair(first1, first2); } |
[править] Пример
Эта программа определяет самую длинную подстроку, которая одновременно является началом заданной строки и её концом в обратном порядке (возможно, пересекающимися).
#include <iostream> #include <string> #include <algorithm> std::string mirror_ends(const std::string& in) { return std::string(in.begin(), std::mismatch(in.begin(), in.end(), in.rbegin()).first); } int main() { std::cout << mirror_ends("abXYZba") << '\n' << mirror_ends("abca") << '\n' << mirror_ends("aba") << '\n'; }
Вывод:
ab a aba
[править] См. также
определяет, будет ли два множества элементов одинаковы Original: determines if two sets of elements are the same The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (шаблон функции) | |
(C++11) |
находит первый элемент, удовлетворяющий определенным критериям Original: finds the first element satisfying specific criteria The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (шаблон функции) |
возвращает истину, если один диапазон лексикографически меньше, чем другой Original: returns true if one range is lexicographically less than another The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (шаблон функции) | |
searches for a range of elements (шаблон функции) |