ranked_index.hpp 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /* Copyright 2003-2015 Joaquin M Lopez Munoz.
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * See http://www.boost.org/libs/multi_index for library home page.
  7. */
  8. #ifndef BOOST_MULTI_INDEX_RANKED_INDEX_HPP
  9. #define BOOST_MULTI_INDEX_RANKED_INDEX_HPP
  10. #if defined(_MSC_VER)
  11. #pragma once
  12. #endif
  13. #include <boost/config.hpp> /* keep it first to prevent nasty warns in MSVC */
  14. #include <boost/multi_index/detail/ord_index_impl.hpp>
  15. #include <boost/multi_index/detail/rnk_index_ops.hpp>
  16. #include <boost/multi_index/ranked_index_fwd.hpp>
  17. namespace boost{
  18. namespace multi_index{
  19. namespace detail{
  20. /* ranked_index augments a given ordered index to provide rank operations */
  21. template<typename OrderedIndexNodeImpl>
  22. struct ranked_node:OrderedIndexNodeImpl
  23. {
  24. std::size_t size;
  25. };
  26. template<typename OrderedIndexImpl>
  27. class ranked_index:public OrderedIndexImpl
  28. {
  29. typedef OrderedIndexImpl super;
  30. protected:
  31. typedef typename super::node_type node_type;
  32. typedef typename super::node_impl_pointer node_impl_pointer;
  33. public:
  34. typedef typename super::ctor_args_list ctor_args_list;
  35. typedef typename super::allocator_type allocator_type;
  36. typedef typename super::iterator iterator;
  37. /* rank operations */
  38. iterator nth(std::size_t n)const
  39. {
  40. return this->make_iterator(node_type::from_impl(
  41. ranked_index_nth(n,this->header()->impl())));
  42. }
  43. std::size_t rank(iterator position)const
  44. {
  45. BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(position);
  46. BOOST_MULTI_INDEX_CHECK_IS_OWNER(position,*this);
  47. return ranked_index_rank(
  48. position.get_node()->impl(),this->header()->impl());
  49. }
  50. template<typename CompatibleKey>
  51. std::size_t find_rank(const CompatibleKey& x)const
  52. {
  53. return ranked_index_find_rank(
  54. this->root(),this->header(),this->key,x,this->comp_);
  55. }
  56. template<typename CompatibleKey,typename CompatibleCompare>
  57. std::size_t find_rank(
  58. const CompatibleKey& x,const CompatibleCompare& comp)const
  59. {
  60. return ranked_index_find_rank(
  61. this->root(),this->header(),this->key,x,comp);
  62. }
  63. template<typename CompatibleKey>
  64. std::size_t lower_bound_rank(const CompatibleKey& x)const
  65. {
  66. return ranked_index_lower_bound_rank(
  67. this->root(),this->header(),this->key,x,this->comp_);
  68. }
  69. template<typename CompatibleKey,typename CompatibleCompare>
  70. std::size_t lower_bound_rank(
  71. const CompatibleKey& x,const CompatibleCompare& comp)const
  72. {
  73. return ranked_index_lower_bound_rank(
  74. this->root(),this->header(),this->key,x,comp);
  75. }
  76. template<typename CompatibleKey>
  77. std::size_t upper_bound_rank(const CompatibleKey& x)const
  78. {
  79. return ranked_index_upper_bound_rank(
  80. this->root(),this->header(),this->key,x,this->comp_);
  81. }
  82. template<typename CompatibleKey,typename CompatibleCompare>
  83. std::size_t upper_bound_rank(
  84. const CompatibleKey& x,const CompatibleCompare& comp)const
  85. {
  86. return ranked_index_upper_bound_rank(
  87. this->root(),this->header(),this->key,x,comp);
  88. }
  89. template<typename CompatibleKey>
  90. std::pair<std::size_t,std::size_t> equal_range_rank(
  91. const CompatibleKey& x)const
  92. {
  93. return ranked_index_equal_range_rank(
  94. this->root(),this->header(),this->key,x,this->comp_);
  95. }
  96. template<typename CompatibleKey,typename CompatibleCompare>
  97. std::pair<std::size_t,std::size_t> equal_range_rank(
  98. const CompatibleKey& x,const CompatibleCompare& comp)const
  99. {
  100. return ranked_index_equal_range_rank(
  101. this->root(),this->header(),this->key,x,comp);
  102. }
  103. template<typename LowerBounder,typename UpperBounder>
  104. std::pair<std::size_t,std::size_t>
  105. range_rank(LowerBounder lower,UpperBounder upper)const
  106. {
  107. typedef typename mpl::if_<
  108. is_same<LowerBounder,unbounded_type>,
  109. BOOST_DEDUCED_TYPENAME mpl::if_<
  110. is_same<UpperBounder,unbounded_type>,
  111. both_unbounded_tag,
  112. lower_unbounded_tag
  113. >::type,
  114. BOOST_DEDUCED_TYPENAME mpl::if_<
  115. is_same<UpperBounder,unbounded_type>,
  116. upper_unbounded_tag,
  117. none_unbounded_tag
  118. >::type
  119. >::type dispatch;
  120. return range_rank(lower,upper,dispatch());
  121. }
  122. protected:
  123. ranked_index(const ranked_index& x):super(x){};
  124. ranked_index(const ranked_index& x,do_not_copy_elements_tag):
  125. super(x,do_not_copy_elements_tag()){};
  126. ranked_index(
  127. const ctor_args_list& args_list,const allocator_type& al):
  128. super(args_list,al){}
  129. private:
  130. template<typename LowerBounder,typename UpperBounder>
  131. std::pair<std::size_t,std::size_t>
  132. range_rank(LowerBounder lower,UpperBounder upper,none_unbounded_tag)const
  133. {
  134. node_type* y=this->header();
  135. node_type* z=this->root();
  136. if(!z)return std::pair<std::size_t,std::size_t>(0,0);
  137. std::size_t s=z->size;
  138. do{
  139. if(!lower(this->key(z->value()))){
  140. z=node_type::from_impl(z->right());
  141. }
  142. else if(!upper(this->key(z->value()))){
  143. y=z;
  144. s-=ranked_node_size(y->right())+1;
  145. z=node_type::from_impl(z->left());
  146. }
  147. else{
  148. return std::pair<std::size_t,std::size_t>(
  149. s-z->size+
  150. lower_range_rank(node_type::from_impl(z->left()),z,lower),
  151. s-ranked_node_size(z->right())+
  152. upper_range_rank(node_type::from_impl(z->right()),y,upper));
  153. }
  154. }while(z);
  155. return std::pair<std::size_t,std::size_t>(s,s);
  156. }
  157. template<typename LowerBounder,typename UpperBounder>
  158. std::pair<std::size_t,std::size_t>
  159. range_rank(LowerBounder,UpperBounder upper,lower_unbounded_tag)const
  160. {
  161. return std::pair<std::size_t,std::size_t>(
  162. 0,
  163. upper_range_rank(this->root(),this->header(),upper));
  164. }
  165. template<typename LowerBounder,typename UpperBounder>
  166. std::pair<std::size_t,std::size_t>
  167. range_rank(LowerBounder lower,UpperBounder,upper_unbounded_tag)const
  168. {
  169. return std::pair<std::size_t,std::size_t>(
  170. lower_range_rank(this->root(),this->header(),lower),
  171. this->size());
  172. }
  173. template<typename LowerBounder,typename UpperBounder>
  174. std::pair<std::size_t,std::size_t>
  175. range_rank(LowerBounder,UpperBounder,both_unbounded_tag)const
  176. {
  177. return std::pair<std::size_t,std::size_t>(0,this->size());
  178. }
  179. template<typename LowerBounder>
  180. std::size_t
  181. lower_range_rank(node_type* top,node_type* y,LowerBounder lower)const
  182. {
  183. if(!top)return 0;
  184. std::size_t s=top->size;
  185. do{
  186. if(lower(this->key(top->value()))){
  187. y=top;
  188. s-=ranked_node_size(y->right())+1;
  189. top=node_type::from_impl(top->left());
  190. }
  191. else top=node_type::from_impl(top->right());
  192. }while(top);
  193. return s;
  194. }
  195. template<typename UpperBounder>
  196. std::size_t
  197. upper_range_rank(node_type* top,node_type* y,UpperBounder upper)const
  198. {
  199. if(!top)return 0;
  200. std::size_t s=top->size;
  201. do{
  202. if(!upper(this->key(top->value()))){
  203. y=top;
  204. s-=ranked_node_size(y->right())+1;
  205. top=node_type::from_impl(top->left());
  206. }
  207. else top=node_type::from_impl(top->right());
  208. }while(top);
  209. return s;
  210. }
  211. };
  212. /* augmenting policy for ordered_index */
  213. struct rank_policy
  214. {
  215. template<typename OrderedIndexNodeImpl>
  216. struct augmented_node
  217. {
  218. typedef ranked_node<OrderedIndexNodeImpl> type;
  219. };
  220. template<typename OrderedIndexImpl>
  221. struct augmented_interface
  222. {
  223. typedef ranked_index<OrderedIndexImpl> type;
  224. };
  225. /* algorithmic stuff */
  226. template<typename Pointer>
  227. static void add(Pointer x,Pointer root)
  228. {
  229. x->size=1;
  230. while(x!=root){
  231. x=x->parent();
  232. ++(x->size);
  233. }
  234. }
  235. template<typename Pointer>
  236. static void remove(Pointer x,Pointer root)
  237. {
  238. while(x!=root){
  239. x=x->parent();
  240. --(x->size);
  241. }
  242. }
  243. template<typename Pointer>
  244. static void copy(Pointer x,Pointer y)
  245. {
  246. y->size=x->size;
  247. }
  248. template<typename Pointer>
  249. static void rotate_left(Pointer x,Pointer y) /* in: x==y->left() */
  250. {
  251. y->size=x->size;
  252. x->size=ranked_node_size(x->left())+ranked_node_size(x->right())+1;
  253. }
  254. template<typename Pointer>
  255. static void rotate_right(Pointer x,Pointer y) /* in: x==y->right() */
  256. {
  257. rotate_left(x,y);
  258. }
  259. #if defined(BOOST_MULTI_INDEX_ENABLE_INVARIANT_CHECKING)
  260. /* invariant stuff */
  261. template<typename Pointer>
  262. static bool invariant(Pointer x)
  263. {
  264. return x->size==ranked_node_size(x->left())+ranked_node_size(x->right())+1;
  265. }
  266. #endif
  267. };
  268. } /* namespace multi_index::detail */
  269. /* ranked_index specifiers */
  270. template<typename Arg1,typename Arg2,typename Arg3>
  271. struct ranked_unique
  272. {
  273. typedef typename detail::ordered_index_args<
  274. Arg1,Arg2,Arg3> index_args;
  275. typedef typename index_args::tag_list_type::type tag_list_type;
  276. typedef typename index_args::key_from_value_type key_from_value_type;
  277. typedef typename index_args::compare_type compare_type;
  278. template<typename Super>
  279. struct node_class
  280. {
  281. typedef detail::ordered_index_node<detail::rank_policy,Super> type;
  282. };
  283. template<typename SuperMeta>
  284. struct index_class
  285. {
  286. typedef detail::ordered_index<
  287. key_from_value_type,compare_type,
  288. SuperMeta,tag_list_type,detail::ordered_unique_tag,
  289. detail::rank_policy> type;
  290. };
  291. };
  292. template<typename Arg1,typename Arg2,typename Arg3>
  293. struct ranked_non_unique
  294. {
  295. typedef detail::ordered_index_args<
  296. Arg1,Arg2,Arg3> index_args;
  297. typedef typename index_args::tag_list_type::type tag_list_type;
  298. typedef typename index_args::key_from_value_type key_from_value_type;
  299. typedef typename index_args::compare_type compare_type;
  300. template<typename Super>
  301. struct node_class
  302. {
  303. typedef detail::ordered_index_node<detail::rank_policy,Super> type;
  304. };
  305. template<typename SuperMeta>
  306. struct index_class
  307. {
  308. typedef detail::ordered_index<
  309. key_from_value_type,compare_type,
  310. SuperMeta,tag_list_type,detail::ordered_non_unique_tag,
  311. detail::rank_policy> type;
  312. };
  313. };
  314. } /* namespace multi_index */
  315. } /* namespace boost */
  316. #endif