gpt4 book ai didi

c++ - `std::partition()` 的时间复杂度

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:31:28 24 4
gpt4 key购买 nike

根据 cppreference :

Complexity
Exactly std::distance(first,last) applications of the predicate and at most std::distance(first,last) swaps. If ForwardIt meets the requirements of BidirectionalIterator at most std::distance(first,last)/2 swaps are done.

我查看了底部的示例实现:

template<class ForwardIt, class UnaryPredicate>
ForwardIt partition(ForwardIt first, ForwardIt last, UnaryPredicate p)
{
if (first == last) return first;
ForwardIt part(first++);
if (first == last) return p(*part) ? first : part;
while (first != last) {
if (p(*part))
++part;
else if (p(*first)) {
iter_swap(part, first);
++part;
}
++first;
}
return part;
}

我认为它最多执行 std::distance(first,last)/2 交换而不是 std::distance(first,last)。没有?

最佳答案

这似乎是非双向迭代器的实现,仅向前发展。仅通过一系列 n 项向前移动,至少需要 n-1 次交换才能将单个非 p 项从头移动到尾。使用双向迭代器,可以从两端向内工作。

关于c++ - `std::partition()` 的时间复杂度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35167980/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com