STL: reverse_iterator / iterator 关系以及 erase 相关(C++)

本文探讨了C++ STL中反向迭代器reverse_iterator与普通迭代器iterator的关系,强调在使用反向迭代器进行元素删除时需要注意的细节。通过实例说明反向迭代器在调用erase函数前需要先前进一位再转换为正向迭代器,以确保正确删除目标元素。

    反向迭代器

    相信大家对正向迭代器应该都很熟悉,然而对于反向迭代器的使用确是有几处需要注意的地方,在此记录一下。先看STL源码处注释如下:

  /**
   *  Bidirectional and random access iterators have corresponding reverse
   *  %iterator adaptors that iterate through the data structure in the
   *  opposite direction.  They have the same signatures as the corresponding
   *  iterators.  The fundamental relation between a reverse %iterator and its
   *  corresponding %iterator @c i is established by the identity:
   *  @code
   *      &*(reverse_iterator(i)) == &*(i - 1)
   *  @endcode
   *
   *  <em>This mapping is dictated by the fact that while there is always a
   *  pointer past the end of an array, there might not be a valid pointer
   *  before the beginning of an array.</em> [24.4.1]/1,2
   *
   *  Reverse iterators can be tricky and surprising at first.  Their
   *  semantics make sense, however, an
else { if(q2.size() < n2) { q2.insert(q2.begin(),p); } else { q2.pop_back(); 测试结果 自测运行结果 自测输入 3 3 10 1 2 3 4 3 2 2 1 3 4 运行结果 step1/main.cpp: In function ‘void rmove(std::vector<int>&, int)’: step1/main.cpp:11:37: error: expected primary-expression before ‘int’ int it = find(v.begin(),v.end(),int e); ^~~ step1/main.cpp:12:12: error: no match for ‘operator!=’ (operand types are ‘int’ and ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’) if (it != v.end()) v.erase(it); ~~~^~~~~~~~~~ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:951:5: note: candidate: template<class _BiIter> bool std::__cxx11::operator!=(const std::__cxx11::sub_match<_BiIter>&, const std::__cxx11::sub_match<_BiIter>&) operator!=(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:951:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::sub_match<_BiIter>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1029:5: note: candidate: template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator!=(std::__cxx11::__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&, const std::__cxx11::sub_match<_BiIter>&) operator!=(const __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1029:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘std::__cxx11::__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1109:5: note: candidate: template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator!=(const std::__cxx11::sub_match<_BiIter>&, std::__cxx11::__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&) operator!=(const sub_match<_Bi_iter>& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1109:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::sub_match<_BiIter>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1186:5: note: candidate: template<class _Bi_iter> bool std::__cxx11::operator!=(const typename std::iterator_traits<_Iter>::value_type*, const std::__cxx11::sub_match<_BiIter>&) operator!=(typename iterator_traits<_Bi_iter>::value_type const* __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1186:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::__cxx11::sub_match<_BiIter>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1260:5: note: candidate: template<class _Bi_iter> bool std::__cxx11::operator!=(const std::__cxx11::sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type*) operator!=(const sub_match<_Bi_iter>& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1260:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::sub_match<_BiIter>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1337:5: note: candidate: template<class _Bi_iter> bool std::__cxx11::operator!=(const typename std::iterator_traits<_Iter>::value_type&, const std::__cxx11::sub_match<_BiIter>&) operator!=(typename iterator_traits<_Bi_iter>::value_type const& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1337:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::__cxx11::sub_match<_BiIter>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1417:5: note: candidate: template<class _Bi_iter> bool std::__cxx11::operator!=(const std::__cxx11::sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type&) operator!=(const sub_match<_Bi_iter>& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1417:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::sub_match<_BiIter>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/regex:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:110, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/regex.h:1944:5: note: candidate: template<class _Bi_iter, class _Alloc> bool std::__cxx11::operator!=(const std::__cxx11::match_results<_BiIter, _Alloc>&, const std::__cxx11::match_results<_BiIter, _Alloc>&) operator!=(const match_results<_Bi_iter, _Alloc>& __m1, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/regex.h:1944:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::match_results<_BiIter, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/iosfwd:40:0, from /usr/local/include/c++/7.3.0/ios:38, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/postypes.h:221:5: note: candidate: template<class _StateT> bool std::operator!=(const std::fpos<_StateT>&, const std::fpos<_StateT>&) operator!=(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/postypes.h:221:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::fpos<_StateT>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/stl_algobase.h:64:0, from /usr/local/include/c++/7.3.0/bits/char_traits.h:39, from /usr/local/include/c++/7.3.0/ios:40, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_pair.h:456:5: note: candidate: template<class _T1, class _T2> constexpr bool std::operator!=(const std::pair<_T1, _T2>&, const std::pair<_T1, _T2>&) operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_pair.h:456:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::pair<_T1, _T2>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/stl_algobase.h:67:0, from /usr/local/include/c++/7.3.0/bits/char_traits.h:39, from /usr/local/include/c++/7.3.0/ios:40, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_iterator.h:311:5: note: candidate: template<class _Iterator> bool std::operator!=(const std::reverse_iterator<_Iterator>&, const std::reverse_iterator<_Iterator>&) operator!=(const reverse_iterator<_Iterator>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_iterator.h:311:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::reverse_iterator<_Iterator>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/stl_algobase.h:67:0, from /usr/local/include/c++/7.3.0/bits/char_traits.h:39, from /usr/local/include/c++/7.3.0/ios:40, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_iterator.h:349:5: note: candidate: template<class _IteratorL, class _IteratorR> bool std::operator!=(const std::reverse_iterator<_Iterator>&, const std::reverse_iterator<_IteratorR>&) operator!=(const reverse_iterator<_IteratorL>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_iterator.h:349:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::reverse_iterator<_Iterator>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/stl_algobase.h:67:0, from /usr/local/include/c++/7.3.0/bits/char_traits.h:39, from /usr/local/include/c++/7.3.0/ios:40, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_iterator.h:1130:5: note: candidate: template<class _IteratorL, class _IteratorR> bool std::operator!=(const std::move_iterator<_IteratorL>&, const std::move_iterator<_IteratorR>&) operator!=(const move_iterator<_IteratorL>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_iterator.h:1130:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::move_iterator<_IteratorL>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/stl_algobase.h:67:0, from /usr/local/include/c++/7.3.0/bits/char_traits.h:39, from /usr/local/include/c++/7.3.0/ios:40, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_iterator.h:1136:5: note: candidate: template<class _Iterator> bool std::operator!=(const std::move_iterator<_IteratorL>&, const std::move_iterator<_IteratorL>&) operator!=(const move_iterator<_Iterator>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_iterator.h:1136:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::move_iterator<_IteratorL>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/string:41:0, from /usr/local/include/c++/7.3.0/bits/locale_classes.h:40, from /usr/local/include/c++/7.3.0/bits/ios_base.h:41, from /usr/local/include/c++/7.3.0/ios:42, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/allocator.h:158:5: note: candidate: template<class _T1, class _T2> bool std::operator!=(const std::allocator<_CharT>&, const std::allocator<_T2>&) operator!=(const allocator<_T1>&, const allocator<_T2>&) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/allocator.h:158:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::allocator<_CharT>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/string:41:0, from /usr/local/include/c++/7.3.0/bits/locale_classes.h:40, from /usr/local/include/c++/7.3.0/bits/ios_base.h:41, from /usr/local/include/c++/7.3.0/ios:42, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/allocator.h:164:5: note: candidate: template<class _Tp> bool std::operator!=(const std::allocator<_CharT>&, const std::allocator<_CharT>&) operator!=(const allocator<_Tp>&, const allocator<_Tp>&) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/allocator.h:164:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::allocator<_CharT>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/string:52:0, from /usr/local/include/c++/7.3.0/bits/locale_classes.h:40, from /usr/local/include/c++/7.3.0/bits/ios_base.h:41, from /usr/local/include/c++/7.3.0/ios:42, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/basic_string.h:6044:5: note: candidate: template<class _CharT, class _Traits, class _Alloc> bool std::operator!=(const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&, const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&) operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/basic_string.h:6044:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/string:52:0, from /usr/local/include/c++/7.3.0/bits/locale_classes.h:40, from /usr/local/include/c++/7.3.0/bits/ios_base.h:41, from /usr/local/include/c++/7.3.0/ios:42, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/basic_string.h:6057:5: note: candidate: template<class _CharT, class _Traits, class _Alloc> bool std::operator!=(const _CharT*, const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&) operator!=(const _CharT* __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/basic_string.h:6057:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const _CharT*’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/string:52:0, from /usr/local/include/c++/7.3.0/bits/locale_classes.h:40, from /usr/local/include/c++/7.3.0/bits/ios_base.h:41, from /usr/local/include/c++/7.3.0/ios:42, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/basic_string.h:6069:5: note: candidate: template<class _CharT, class _Traits, class _Alloc> bool std::operator!=(const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&, const _CharT*) operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/basic_string.h:6069:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::basic_string<_CharT, _Traits, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/ios_base.h:46:0, from /usr/local/include/c++/7.3.0/ios:42, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/system_error:319:3: note: candidate: bool std::operator!=(const std::error_code&, const std::error_code&) operator!=(const error_code& __lhs, const error_code& __rhs) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/system_error:319:3: note: no known conversion for argument 1 from ‘int’ to ‘const std::error_code&’ /usr/local/include/c++/7.3.0/system_error:323:3: note: candidate: bool std::operator!=(const std::error_code&, const std::error_condition&) operator!=(const error_code& __lhs, const error_condition& __rhs) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/system_error:323:3: note: no known conversion for argument 1 from ‘int’ to ‘const std::error_code&’ /usr/local/include/c++/7.3.0/system_error:327:3: note: candidate: bool std::operator!=(const std::error_condition&, const std::error_code&) operator!=(const error_condition& __lhs, const error_code& __rhs) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/system_error:327:3: note: no known conversion for argument 1 from ‘int’ to ‘const std::error_condition&’ /usr/local/include/c++/7.3.0/system_error:331:3: note: candidate: bool std::operator!=(const std::error_condition&, const std::error_condition&) operator!=(const error_condition& __lhs, ^~~~~~~~ /usr/local/include/c++/7.3.0/system_error:331:3: note: no known conversion for argument 1 from ‘int’ to ‘const std::error_condition&’ In file included from /usr/local/include/c++/7.3.0/bits/locale_facets.h:48:0, from /usr/local/include/c++/7.3.0/bits/basic_ios.h:37, from /usr/local/include/c++/7.3.0/ios:44, from /usr/local/include/c++/7.3.0/istream:38, from /usr/local/include/c++/7.3.0/sstream:38, from /usr/local/include/c++/7.3.0/complex:45, from /usr/local/include/c++/7.3.0/ccomplex:39, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/streambuf_iterator.h:210:5: note: candidate: template<class _CharT, class _Traits> bool std::operator!=(const std::istreambuf_iterator<_CharT, _Traits>&, const std::istreambuf_iterator<_CharT, _Traits>&) operator!=(const istreambuf_iterator<_CharT, _Traits>& __a, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/streambuf_iterator.h:210:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::istreambuf_iterator<_CharT, _Traits>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/ccomplex:39:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/complex:476:5: note: candidate: template<class _Tp> constexpr bool std::operator!=(const std::complex<_Tp>&, const std::complex<_Tp>&) operator!=(const complex<_Tp>& __x, const complex<_Tp>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/complex:476:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::complex<_Tp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/ccomplex:39:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/complex:481:5: note: candidate: template<class _Tp> constexpr bool std::operator!=(const std::complex<_Tp>&, const _Tp&) operator!=(const complex<_Tp>& __x, const _Tp& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/complex:481:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::complex<_Tp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/ccomplex:39:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:52, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/complex:486:5: note: candidate: template<class _Tp> constexpr bool std::operator!=(const _Tp&, const std::complex<_Tp>&) operator!=(const _Tp& __x, const complex<_Tp>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/complex:486:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::complex<_Tp>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/deque:64:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:68, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_deque.h:280:5: note: candidate: template<class _Tp, class _Ref, class _Ptr> bool std::operator!=(const std::_Deque_iterator<_Tp, _Ref, _Ptr>&, const std::_Deque_iterator<_Tp, _Ref, _Ptr>&) operator!=(const _Deque_iterator<_Tp, _Ref, _Ptr>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_deque.h:280:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::_Deque_iterator<_Tp, _Ref, _Ptr>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/deque:64:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:68, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_deque.h:287:5: note: candidate: template<class _Tp, class _RefL, class _PtrL, class _RefR, class _PtrR> bool std::operator!=(const std::_Deque_iterator<_Tp, _Ref, _Ptr>&, const std::_Deque_iterator<_Tp, _RefR, _PtrR>&) operator!=(const _Deque_iterator<_Tp, _RefL, _PtrL>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_deque.h:287:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::_Deque_iterator<_Tp, _Ref, _Ptr>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/deque:64:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:68, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_deque.h:2284:5: note: candidate: template<class _Tp, class _Alloc> bool std::operator!=(const std::deque<_Tp, _Alloc>&, const std::deque<_Tp, _Alloc>&) operator!=(const deque<_Tp, _Alloc>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_deque.h:2284:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::deque<_Tp, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/tuple:39:0, from /usr/local/include/c++/7.3.0/functional:54, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:71, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/array:257:5: note: candidate: template<class _Tp, long unsigned int _Nm> bool std::operator!=(const std::array<_Tp, _Nm>&, const std::array<_Tp, _Nm>&) operator!=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two) ^~~~~~~~ /usr/local/include/c++/7.3.0/array:257:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::array<_Tp, _Nm>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/functional:54:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:71, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/tuple:1423:5: note: candidate: template<class ... _TElements, class ... _UElements> constexpr bool std::operator!=(const std::tuple<_Tps ...>&, const std::tuple<_Elements ...>&) operator!=(const tuple<_TElements...>& __t, ^~~~~~~~ /usr/local/include/c++/7.3.0/tuple:1423:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::tuple<_Tps ...>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/functional:58:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:71, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/std_function.h:782:5: note: candidate: template<class _Res, class ... _Args> bool std::operator!=(const std::function<_Res(_ArgTypes ...)>&, std::nullptr_t) operator!=(const function<_Res(_Args...)>& __f, nullptr_t) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/std_function.h:782:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::function<_Res(_ArgTypes ...)>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/functional:58:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:71, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/std_function.h:788:5: note: candidate: template<class _Res, class ... _Args> bool std::operator!=(std::nullptr_t, const std::function<_Res(_ArgTypes ...)>&) operator!=(nullptr_t, const function<_Res(_Args...)>& __f) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/std_function.h:788:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::function<_Res(_ArgTypes ...)>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/locale_conv.h:41:0, from /usr/local/include/c++/7.3.0/locale:43, from /usr/local/include/c++/7.3.0/iomanip:43, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:72, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/unique_ptr.h:700:5: note: candidate: template<class _Tp, class _Dp, class _Up, class _Ep> bool std::operator!=(const std::unique_ptr<_Tp, _Dp>&, const std::unique_ptr<_Up, _Ep>&) operator!=(const unique_ptr<_Tp, _Dp>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/unique_ptr.h:700:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::unique_ptr<_Tp, _Dp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/locale_conv.h:41:0, from /usr/local/include/c++/7.3.0/locale:43, from /usr/local/include/c++/7.3.0/iomanip:43, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:72, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/unique_ptr.h:706:5: note: candidate: template<class _Tp, class _Dp> bool std::operator!=(const std::unique_ptr<_Tp, _Dp>&, std::nullptr_t) operator!=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/unique_ptr.h:706:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::unique_ptr<_Tp, _Dp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/locale_conv.h:41:0, from /usr/local/include/c++/7.3.0/locale:43, from /usr/local/include/c++/7.3.0/iomanip:43, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:72, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/unique_ptr.h:711:5: note: candidate: template<class _Tp, class _Dp> bool std::operator!=(std::nullptr_t, const std::unique_ptr<_Tp, _Dp>&) operator!=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/unique_ptr.h:711:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::unique_ptr<_Tp, _Dp>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/iterator:66:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:77, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stream_iterator.h:137:5: note: candidate: template<class _Tp, class _CharT, class _Traits, class _Dist> bool std::operator!=(const std::istream_iterator<_Tp, _CharT, _Traits, _Dist>&, const std::istream_iterator<_Tp, _CharT, _Traits, _Dist>&) operator!=(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stream_iterator.h:137:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::istream_iterator<_Tp, _CharT, _Traits, _Dist>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/list:63:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:79, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_list.h:293:5: note: candidate: template<class _Val> bool std::operator!=(const std::_List_iterator<_Tp>&, const std::_List_const_iterator<_Tp>&) operator!=(const _List_iterator<_Val>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_list.h:293:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::_List_iterator<_Tp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/list:63:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:79, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_list.h:1925:5: note: candidate: template<class _Tp, class _Alloc> bool std::operator!=(const std::__cxx11::list<_Tp, _Alloc>&, const std::__cxx11::list<_Tp, _Alloc>&) operator!=(const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_list.h:1925:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__cxx11::list<_Tp, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/map:60:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:81, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_tree.h:412:5: note: candidate: template<class _Val> bool std::operator!=(const std::_Rb_tree_iterator<_Tp>&, const std::_Rb_tree_const_iterator<_Val>&) operator!=(const _Rb_tree_iterator<_Val>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_tree.h:412:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::_Rb_tree_iterator<_Tp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/map:60:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:81, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_tree.h:1553:5: note: candidate: template<class _Key, class _Val, class _KeyOfValue, class _Compare, class _Alloc> bool std::operator!=(const std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>&, const std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>&) operator!=(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_tree.h:1553:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/map:61:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:81, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_map.h:1419:5: note: candidate: template<class _Key, class _Tp, class _Compare, class _Alloc> bool std::operator!=(const std::map<_Key, _Tp, _Compare, _Alloc>&, const std::map<_Key, _Tp, _Compare, _Alloc>&) operator!=(const map<_Key, _Tp, _Compare, _Alloc>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_map.h:1419:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::map<_Key, _Tp, _Compare, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/map:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:81, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_multimap.h:1085:5: note: candidate: template<class _Key, class _Tp, class _Compare, class _Alloc> bool std::operator!=(const std::multimap<_Key, _Tp, _Compare, _Alloc>&, const std::multimap<_Key, _Tp, _Compare, _Alloc>&) operator!=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_multimap.h:1085:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::multimap<_Key, _Tp, _Compare, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/shared_ptr.h:52:0, from /usr/local/include/c++/7.3.0/memory:81, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:82, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/shared_ptr_base.h:1425:5: note: candidate: template<class _Tp1, class _Tp2, __gnu_cxx::_Lock_policy _Lp> bool std::operator!=(const std::__shared_ptr<_Tp1, _Lp>&, const std::__shared_ptr<_Tp2, _Lp>&) operator!=(const __shared_ptr<_Tp1, _Lp>& __a, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/shared_ptr_base.h:1425:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__shared_ptr<_Tp1, _Lp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/shared_ptr.h:52:0, from /usr/local/include/c++/7.3.0/memory:81, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:82, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/shared_ptr_base.h:1431:5: note: candidate: template<class _Tp, __gnu_cxx::_Lock_policy _Lp> bool std::operator!=(const std::__shared_ptr<_Tp, _Lp>&, std::nullptr_t) operator!=(const __shared_ptr<_Tp, _Lp>& __a, nullptr_t) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/shared_ptr_base.h:1431:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::__shared_ptr<_Tp, _Lp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/bits/shared_ptr.h:52:0, from /usr/local/include/c++/7.3.0/memory:81, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:82, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/shared_ptr_base.h:1436:5: note: candidate: template<class _Tp, __gnu_cxx::_Lock_policy _Lp> bool std::operator!=(std::nullptr_t, const std::__shared_ptr<_Tp, _Lp>&) operator!=(nullptr_t, const __shared_ptr<_Tp, _Lp>& __a) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/shared_ptr_base.h:1436:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::__shared_ptr<_Tp, _Lp>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/memory:81:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:82, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/shared_ptr.h:383:5: note: candidate: template<class _Tp, class _Up> bool std::operator!=(const std::shared_ptr<_Tp>&, const std::shared_ptr<_Up>&) operator!=(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/shared_ptr.h:383:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::shared_ptr<_Tp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/memory:81:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:82, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/shared_ptr.h:388:5: note: candidate: template<class _Tp> bool std::operator!=(const std::shared_ptr<_Tp>&, std::nullptr_t) operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/shared_ptr.h:388:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::shared_ptr<_Tp>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/memory:81:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:82, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/shared_ptr.h:393:5: note: candidate: template<class _Tp> bool std::operator!=(std::nullptr_t, const std::shared_ptr<_Tp>&) operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/shared_ptr.h:393:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: ‘std::vector<int>::iterator {aka __gnu_cxx::__normal_iterator<int*, std::vector<int> >}’ is not derived from ‘const std::shared_ptr<_Tp>’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/vector:64:0, from /usr/local/include/c++/7.3.0/queue:61, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:86, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_vector.h:1620:5: note: candidate: template<class _Tp, class _Alloc> bool std::operator!=(const std::vector<_Tp, _Alloc>&, const std::vector<_Tp, _Alloc>&) operator!=(const vector<_Tp, _Alloc>& __x, const vector<_Tp, _Alloc>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_vector.h:1620:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::vector<_Tp, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/queue:64:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:86, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_queue.h:342:5: note: candidate: template<class _Tp, class _Seq> bool std::operator!=(const std::queue<_Tp, _Seq>&, const std::queue<_Tp, _Seq>&) operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_queue.h:342:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::queue<_Tp, _Seq>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/set:61:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:87, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_set.h:937:5: note: candidate: template<class _Key, class _Compare, class _Alloc> bool std::operator!=(const std::set<_Key, _Compare, _Alloc>&, const std::set<_Key, _Compare, _Alloc>&) operator!=(const set<_Key, _Compare, _Alloc>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_set.h:937:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::set<_Key, _Compare, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/set:62:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:87, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_multiset.h:920:5: note: candidate: template<class _Key, class _Compare, class _Alloc> bool std::operator!=(const std::multiset<_Key, _Compare, _Alloc>&, const std::multiset<_Key, _Compare, _Alloc>&) operator!=(const multiset<_Key, _Compare, _Alloc>& __x, ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_multiset.h:920:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::multiset<_Key, _Compare, _Alloc>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/stack:61:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:89, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/stl_stack.h:317:5: note: candidate: template<class _Tp, class _Seq> bool std::operator!=(const std::stack<_Tp, _Seq>&, const std::stack<_Tp, _Seq>&) operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) ^~~~~~~~ /usr/local/include/c++/7.3.0/bits/stl_stack.h:317:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::stack<_Tp, _Seq>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/valarray:592:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:95, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/valarray_after.h:415:5: note: candidate: template<class _Dom1, class _Dom2> std::_Expr<std::_BinClos<std::__not_equal_to, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const std::_Expr<_Dom1, typename _Dom1::value_type>&, const std::_Expr<_Dom2, typename _Dom2::value_type>&) _DEFINE_EXPR_BINARY_OPERATOR(!=, __not_equal_to) ^ /usr/local/include/c++/7.3.0/bits/valarray_after.h:415:5: note: template argument deduction/substitution failed: step1/main.cpp:12:21: note: mismatched types ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ and ‘int’ if (it != v.end()) v.erase(it); ^ In file included from /usr/local/include/c++/7.3.0/valarray:592:0, from /usr/local/include/c++/7.3.0/x86_64-linux-gnu/bits/stdc++.h:95, from step1/main.cpp:1: /usr/local/include/c++/7.3.0/bits/valarray_after.h:415:5: note: candidate: template<class _Dom> std::_Expr<std::_BinClos<std::__not_equal_to, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const std::_Expr<_Dom1, type
最新发布
12-04
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值