用C ++命令统计树

时间:2012-06-27 16:17:45

标签: c++ algorithm data-structures stl

我需要标准GCC STL地图容器的订单统计树。

我查了一下,有一种叫做PBDS的东西。基于策略的数据结构。这种用法对我来说也不清楚。

任何人都可以告诉我如何将STL地图容器用于订单统计树?即使它只在GNU G ++上足够吗?

1 个答案:

答案 0 :(得分:19)

以下是基于GNU策略的STL MAP实现为订单统计树的示例(在Linux gcc 4.6.1上测试):

#include <iostream>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

using namespace std;
using namespace __gnu_pbds;

typedef
tree<
  int,
  int,
  less<int>,
  rb_tree_tag,
  tree_order_statistics_node_update>
map_t;

int main()
{
  map_t s;
  s.insert(make_pair(12, 1012));
  s.insert(make_pair(505, 1505));
  s.insert(make_pair(30, 1030));
  cout << s.find_by_order(1)->second << '\n';
  return 0;
}

这是a link to the overview of GNU Policy-Based Data Structures。这是其他tree_order_statistics example。我找不到基于策略的数据结构的良好参考,但您可以使用这些链接以及PBDS源。