摘要:
max_element返回的是迭代器 max返回的是引用 阅读全文
摘要:
10 10 10 20 20 20 30 30val=20 lower_bound at position 3 //返回大于等于value的第一个 upper_bound at position 6 //返回大于value的第一个 阅读全文
摘要:
功能:返回已排序的前n个元素的后一个迭代器 partial_sort 部分排序,middle前面的,不包括middle。按升序排序或自定义 阅读全文
摘要:
功能:返回当前排列的前一个排列 4 3 2 1 4 3 1 2 4 2 3 1 4 2 1 3 阅读全文
摘要:
template <class BidirectionalIterator, class UnaryPredicate> BidirectionalIterator partition (BidirectionalIterator first, BidirectionalIterator last, 阅读全文