find_by_order()是有序集的内置函数,它是C++中基于策略的数据结构。基于策略的数据结构不是C++标准模板库的一部分,但g ++编译器支持它们。
有序集是g ++中基于策略的数据结构,可以按排序的顺序维护唯一的元素。它以O(logN)复杂度执行STL中Set所执行的所有操作。
除此之外,还以O(logN)复杂度执行以下两个操作:
- order_of_key (K): Number of items strictly smaller than K.
- find_by_order(k): Kth element in a Set (counting from zero).
find_by_order()函数接受一个称为K的键作为参数,并将迭代器返回给Set中第K个最大的元素。
例子:
Considering a Set S = {1, 5, 6, 17, 88},
s.find_by_order(0): Returns the 0th largest element, i.e. the minimum element, i.e. 1.
s.find_by_order(2): Returns the 2nd largest element, i.e. 6.
Note: If K >= N, where N is the size of the set, then the function returns either 0 or in some compilers, the iterator to the smallest element.
下面是C++中find_by_order()函数的实现:
C++14
// C++ program to implement find_by_order()
// for Policy Based Data Structures
#include
// Importing header files
#include
using namespace std;
using namespace __gnu_pbds;
// Declaring Ordered Set
typedef tree, rb_tree_tag,
tree_order_statistics_node_update>
pbds;
// Driver Code
int main()
{
int arr[] = {1, 5, 6, 17, 88};
int n = sizeof(arr)/sizeof(arr[0]);
pbds S;
// Traverse the array
for (int i = 0; i < n; i++) {
// Insert array elements
// into the ordered set
S.insert(arr[i]);
}
// Returns iterator to 0-th
// largest element in the set
cout << *S.find_by_order(0) << " ";
// Returns iterator to 2-nd
// largest element in the set
cout << *S.find_by_order(2);
return 0;
}
输出:
1 6