operator==,!=,<,<=,>,>=(std::list)

来自cppreference.com
< cpp‎ | container‎ | list

 
 
 
std::list
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
list::list
list::~list
list::operator=
list::assign
list::get_allocator
元素的访问
原文:
Element access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
list::front
list::back
迭代器
原文:
Iterators
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
list::begin
list::cbegin

(C++11)
list::end
list::cend

(C++11)
list::rbegin
list::crbegin

(C++11)
list::rend
list::crend

(C++11)
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
list::empty
list::size
list::max_size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
list::clear
list::insert
list::emplace(C++11)
list::erase
list::push_front
list::emplace_front(C++11)
list::pop_front
list::push_back
list::emplace_back(C++11)
list::pop_back
list::resize
list::swap
操作
原文:
Operations
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
list::merge
list::splice
list::remove
list::remove_if
list::reverse
list::unique
list::sort
 

检查到模板循环:Template:include page

template<  >

bool operator==( list<>& lhs,

                 list<>& rhs );
(1)
template<  >

bool operator!=( list<>& lhs,

                 list<>& rhs );
(2)
template<  >

bool operator<( list<>& lhs,

                list<>& rhs );
(3)
template<  >

bool operator<=( list<>& lhs,

                 list<>& rhs );
(4)
template<  >

bool operator>( list<>& lhs,

                list<>& rhs );
(5)
template<  >

bool operator>=( list<>& lhs,

                 list<>& rhs );
(6)
比较两个容器的内容.....
原文:
Compares the contents of two containers.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
1-2) Checks if the contents of lhs and rhs are equal, that is, whether lhs.size() == rhs.size() and each element in lhs has equivalent element in rhs at the same position.
3-6)
比较的内容lhsrhs字典。在执行比较的功能相当于std::lexicographical_compare.
原文:
Compares the contents of lhs and rhs lexicographically. The comparison is performed by a function equivalent to std::lexicographical_compare.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 参数

lhs, rhs -
容器中的内容进行比较
原文:
containers whose contents to compare
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

1)
true的容器中的内容是否是等效,false否则
原文:
true if the contents of the containers are equivalent, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
2)
true如果容器的内容是不等价的,false否则
原文:
true if the contents of the containers are not equivalent, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
3)
true如果内容的lhs字典“小于”比内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically less than the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
4)
true如果内容的lhs字典“小于”或“等于”的内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically less than or equal the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
5)
true如果内容的lhs字典“更大”比内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
6)
true如果内容的lhs字典“更大”大于或“等于”的内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically greater than or equal the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂性

线性大小的容器
原文:
Linear in the size of the container
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里