splaytree.hpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2007-2014
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/intrusive for documentation.
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. #ifndef BOOST_INTRUSIVE_SPLAYTREE_HPP
  13. #define BOOST_INTRUSIVE_SPLAYTREE_HPP
  14. #include <boost/intrusive/detail/config_begin.hpp>
  15. #include <boost/intrusive/intrusive_fwd.hpp>
  16. #include <cstddef>
  17. #include <boost/intrusive/detail/minimal_less_equal_header.hpp>
  18. #include <boost/intrusive/detail/minimal_pair_header.hpp> //std::pair
  19. #include <boost/static_assert.hpp>
  20. #include <boost/intrusive/bstree.hpp>
  21. #include <boost/intrusive/detail/tree_node.hpp>
  22. #include <boost/intrusive/detail/mpl.hpp>
  23. #include <boost/intrusive/pointer_traits.hpp>
  24. #include <boost/intrusive/detail/function_detector.hpp>
  25. #include <boost/intrusive/detail/get_value_traits.hpp>
  26. #include <boost/intrusive/splaytree_algorithms.hpp>
  27. #include <boost/intrusive/link_mode.hpp>
  28. #include <boost/intrusive/detail/key_nodeptr_comp.hpp>
  29. #include <boost/move/utility_core.hpp>
  30. #if defined(BOOST_HAS_PRAGMA_ONCE)
  31. # pragma once
  32. #endif
  33. namespace boost {
  34. namespace intrusive {
  35. /// @cond
  36. struct splaytree_defaults
  37. : bstree_defaults
  38. {};
  39. /// @endcond
  40. //! The class template splaytree is an intrusive splay tree container that
  41. //! is used to construct intrusive splay_set and splay_multiset containers. The no-throw
  42. //! guarantee holds only, if the key_compare object
  43. //! doesn't throw.
  44. //!
  45. //! The template parameter \c T is the type to be managed by the container.
  46. //! The user can specify additional options and if no options are provided
  47. //! default options are used.
  48. //!
  49. //! The container supports the following options:
  50. //! \c base_hook<>/member_hook<>/value_traits<>,
  51. //! \c constant_time_size<>, \c size_type<> and
  52. //! \c compare<>.
  53. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
  54. template<class T, class ...Options>
  55. #else
  56. template<class ValueTraits, class VoidOrKeyOfValue, class VoidOrKeyComp, class SizeType, bool ConstantTimeSize, typename HeaderHolder>
  57. #endif
  58. class splaytree_impl
  59. /// @cond
  60. : public bstree_impl<ValueTraits, VoidOrKeyOfValue, VoidOrKeyComp, SizeType, ConstantTimeSize, SplayTreeAlgorithms, HeaderHolder>
  61. /// @endcond
  62. {
  63. public:
  64. typedef ValueTraits value_traits;
  65. /// @cond
  66. typedef bstree_impl< ValueTraits, VoidOrKeyOfValue, VoidOrKeyComp, SizeType
  67. , ConstantTimeSize, SplayTreeAlgorithms
  68. , HeaderHolder> tree_type;
  69. typedef tree_type implementation_defined;
  70. /// @endcond
  71. typedef typename implementation_defined::pointer pointer;
  72. typedef typename implementation_defined::const_pointer const_pointer;
  73. typedef typename implementation_defined::value_type value_type;
  74. typedef typename implementation_defined::key_type key_type;
  75. typedef typename implementation_defined::key_of_value key_of_value;
  76. typedef typename implementation_defined::reference reference;
  77. typedef typename implementation_defined::const_reference const_reference;
  78. typedef typename implementation_defined::difference_type difference_type;
  79. typedef typename implementation_defined::size_type size_type;
  80. typedef typename implementation_defined::value_compare value_compare;
  81. typedef typename implementation_defined::key_compare key_compare;
  82. typedef typename implementation_defined::iterator iterator;
  83. typedef typename implementation_defined::const_iterator const_iterator;
  84. typedef typename implementation_defined::reverse_iterator reverse_iterator;
  85. typedef typename implementation_defined::const_reverse_iterator const_reverse_iterator;
  86. typedef typename implementation_defined::node_traits node_traits;
  87. typedef typename implementation_defined::node node;
  88. typedef typename implementation_defined::node_ptr node_ptr;
  89. typedef typename implementation_defined::const_node_ptr const_node_ptr;
  90. typedef typename implementation_defined::node_algorithms node_algorithms;
  91. static const bool constant_time_size = implementation_defined::constant_time_size;
  92. /// @cond
  93. private:
  94. //noncopyable
  95. BOOST_MOVABLE_BUT_NOT_COPYABLE(splaytree_impl)
  96. /// @endcond
  97. public:
  98. typedef typename implementation_defined::insert_commit_data insert_commit_data;
  99. //! @copydoc ::boost::intrusive::bstree::bstree()
  100. splaytree_impl()
  101. : tree_type()
  102. {}
  103. //! @copydoc ::boost::intrusive::bstree::bstree(const key_compare &,const value_traits &)
  104. explicit splaytree_impl( const key_compare &cmp, const value_traits &v_traits = value_traits())
  105. : tree_type(cmp, v_traits)
  106. {}
  107. //! @copydoc ::boost::intrusive::bstree::bstree(bool,Iterator,Iterator,const key_compare &,const value_traits &)
  108. template<class Iterator>
  109. splaytree_impl( bool unique, Iterator b, Iterator e
  110. , const key_compare &cmp = key_compare()
  111. , const value_traits &v_traits = value_traits())
  112. : tree_type(cmp, v_traits)
  113. {
  114. if(unique)
  115. this->insert_unique(b, e);
  116. else
  117. this->insert_equal(b, e);
  118. }
  119. //! @copydoc ::boost::intrusive::bstree::bstree(bstree &&)
  120. splaytree_impl(BOOST_RV_REF(splaytree_impl) x)
  121. : tree_type(BOOST_MOVE_BASE(tree_type, x))
  122. {}
  123. //! @copydoc ::boost::intrusive::bstree::operator=(bstree &&)
  124. splaytree_impl& operator=(BOOST_RV_REF(splaytree_impl) x)
  125. { return static_cast<splaytree_impl&>(tree_type::operator=(BOOST_MOVE_BASE(tree_type, x))); }
  126. #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  127. //! @copydoc ::boost::intrusive::bstree::~bstree()
  128. ~splaytree_impl();
  129. //! @copydoc ::boost::intrusive::bstree::begin()
  130. iterator begin();
  131. //! @copydoc ::boost::intrusive::bstree::begin()const
  132. const_iterator begin() const;
  133. //! @copydoc ::boost::intrusive::bstree::cbegin()const
  134. const_iterator cbegin() const;
  135. //! @copydoc ::boost::intrusive::bstree::end()
  136. iterator end();
  137. //! @copydoc ::boost::intrusive::bstree::end()const
  138. const_iterator end() const;
  139. //! @copydoc ::boost::intrusive::bstree::cend()const
  140. const_iterator cend() const;
  141. //! @copydoc ::boost::intrusive::bstree::rbegin()
  142. reverse_iterator rbegin();
  143. //! @copydoc ::boost::intrusive::bstree::rbegin()const
  144. const_reverse_iterator rbegin() const;
  145. //! @copydoc ::boost::intrusive::bstree::crbegin()const
  146. const_reverse_iterator crbegin() const;
  147. //! @copydoc ::boost::intrusive::bstree::rend()
  148. reverse_iterator rend();
  149. //! @copydoc ::boost::intrusive::bstree::rend()const
  150. const_reverse_iterator rend() const;
  151. //! @copydoc ::boost::intrusive::bstree::crend()const
  152. const_reverse_iterator crend() const;
  153. //! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(iterator)
  154. static splaytree_impl &container_from_end_iterator(iterator end_iterator);
  155. //! @copydoc ::boost::intrusive::bstree::container_from_end_iterator(const_iterator)
  156. static const splaytree_impl &container_from_end_iterator(const_iterator end_iterator);
  157. //! @copydoc ::boost::intrusive::bstree::container_from_iterator(iterator)
  158. static splaytree_impl &container_from_iterator(iterator it);
  159. //! @copydoc ::boost::intrusive::bstree::container_from_iterator(const_iterator)
  160. static const splaytree_impl &container_from_iterator(const_iterator it);
  161. //! @copydoc ::boost::intrusive::bstree::key_comp()const
  162. key_compare key_comp() const;
  163. //! @copydoc ::boost::intrusive::bstree::value_comp()const
  164. value_compare value_comp() const;
  165. //! @copydoc ::boost::intrusive::bstree::empty()const
  166. bool empty() const;
  167. //! @copydoc ::boost::intrusive::bstree::size()const
  168. size_type size() const;
  169. //! @copydoc ::boost::intrusive::bstree::swap
  170. void swap(splaytree_impl& other);
  171. //! @copydoc ::boost::intrusive::bstree::clone_from(const bstree&,Cloner,Disposer)
  172. //! Additional notes: it also copies the alpha factor from the source container.
  173. template <class Cloner, class Disposer>
  174. void clone_from(const splaytree_impl &src, Cloner cloner, Disposer disposer);
  175. #else //BOOST_INTRUSIVE_DOXYGEN_INVOKED
  176. using tree_type::clone_from;
  177. #endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  178. //! @copydoc ::boost::intrusive::bstree::clone_from(bstree&&,Cloner,Disposer)
  179. template <class Cloner, class Disposer>
  180. void clone_from(BOOST_RV_REF(splaytree_impl) src, Cloner cloner, Disposer disposer)
  181. { tree_type::clone_from(BOOST_MOVE_BASE(tree_type, src), cloner, disposer); }
  182. #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  183. //! @copydoc ::boost::intrusive::bstree::insert_equal(reference)
  184. iterator insert_equal(reference value);
  185. //! @copydoc ::boost::intrusive::bstree::insert_equal(const_iterator,reference)
  186. iterator insert_equal(const_iterator hint, reference value);
  187. //! @copydoc ::boost::intrusive::bstree::insert_equal(Iterator,Iterator)
  188. template<class Iterator>
  189. void insert_equal(Iterator b, Iterator e);
  190. //! @copydoc ::boost::intrusive::bstree::insert_unique(reference)
  191. std::pair<iterator, bool> insert_unique(reference value);
  192. //! @copydoc ::boost::intrusive::bstree::insert_unique(const_iterator,reference)
  193. iterator insert_unique(const_iterator hint, reference value);
  194. //! @copydoc ::boost::intrusive::bstree::insert_unique_check(const key_type&,insert_commit_data&)
  195. std::pair<iterator, bool> insert_unique_check
  196. (const key_type &key, insert_commit_data &commit_data);
  197. //! @copydoc ::boost::intrusive::bstree::insert_unique_check(const_iterator,const key_type&,insert_commit_data&)
  198. std::pair<iterator, bool> insert_unique_check
  199. (const_iterator hint, const key_type &key, insert_commit_data &commit_data);
  200. //! @copydoc ::boost::intrusive::bstree::insert_unique_check(const KeyType&,KeyTypeKeyCompare,insert_commit_data&)
  201. template<class KeyType, class KeyTypeKeyCompare>
  202. std::pair<iterator, bool> insert_unique_check
  203. (const KeyType &key, KeyTypeKeyCompare comp, insert_commit_data &commit_data);
  204. //! @copydoc ::boost::intrusive::bstree::insert_unique_check(const_iterator,const KeyType&,KeyTypeKeyCompare,insert_commit_data&)
  205. template<class KeyType, class KeyTypeKeyCompare>
  206. std::pair<iterator, bool> insert_unique_check
  207. (const_iterator hint, const KeyType &key
  208. ,KeyTypeKeyCompare comp, insert_commit_data &commit_data);
  209. //! @copydoc ::boost::intrusive::bstree::insert_unique_commit
  210. iterator insert_unique_commit(reference value, const insert_commit_data &commit_data);
  211. //! @copydoc ::boost::intrusive::bstree::insert_unique(Iterator,Iterator)
  212. template<class Iterator>
  213. void insert_unique(Iterator b, Iterator e);
  214. //! @copydoc ::boost::intrusive::bstree::insert_before
  215. iterator insert_before(const_iterator pos, reference value);
  216. //! @copydoc ::boost::intrusive::bstree::push_back
  217. void push_back(reference value);
  218. //! @copydoc ::boost::intrusive::bstree::push_front
  219. void push_front(reference value);
  220. //! @copydoc ::boost::intrusive::bstree::erase(const_iterator)
  221. iterator erase(const_iterator i);
  222. //! @copydoc ::boost::intrusive::bstree::erase(const_iterator,const_iterator)
  223. iterator erase(const_iterator b, const_iterator e);
  224. //! @copydoc ::boost::intrusive::bstree::erase(const key_type &)
  225. size_type erase(const key_type &key);
  226. //! @copydoc ::boost::intrusive::bstree::erase(const KeyType&,KeyTypeKeyCompare)
  227. template<class KeyType, class KeyTypeKeyCompare>
  228. size_type erase(const KeyType& key, KeyTypeKeyCompare comp);
  229. //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,Disposer)
  230. template<class Disposer>
  231. iterator erase_and_dispose(const_iterator i, Disposer disposer);
  232. //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const_iterator,const_iterator,Disposer)
  233. template<class Disposer>
  234. iterator erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer);
  235. //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const key_type &, Disposer)
  236. template<class Disposer>
  237. size_type erase_and_dispose(const key_type &key, Disposer disposer);
  238. //! @copydoc ::boost::intrusive::bstree::erase_and_dispose(const KeyType&,KeyTypeKeyCompare,Disposer)
  239. template<class KeyType, class KeyTypeKeyCompare, class Disposer>
  240. size_type erase_and_dispose(const KeyType& key, KeyTypeKeyCompare comp, Disposer disposer);
  241. //! @copydoc ::boost::intrusive::bstree::clear
  242. void clear();
  243. //! @copydoc ::boost::intrusive::bstree::clear_and_dispose
  244. template<class Disposer>
  245. void clear_and_dispose(Disposer disposer);
  246. //! @copydoc ::boost::intrusive::bstree::count(const key_type &)const
  247. //! Additional note: non-const function, splaying is performed.
  248. size_type count(const key_type &key);
  249. //! @copydoc ::boost::intrusive::bstree::count(const KeyType&,KeyTypeKeyCompare)const
  250. //! Additional note: non-const function, splaying is performed.
  251. template<class KeyType, class KeyTypeKeyCompare>
  252. size_type count(const KeyType &key, KeyTypeKeyCompare comp);
  253. //! @copydoc ::boost::intrusive::bstree::count(const key_type &)const
  254. //! Additional note: const function, no splaying is performed
  255. size_type count(const key_type &key) const;
  256. //! @copydoc ::boost::intrusive::bstree::count(const KeyType&,KeyTypeKeyCompare)const
  257. //! Additional note: const function, no splaying is performed
  258. template<class KeyType, class KeyTypeKeyCompare>
  259. size_type count(const KeyType &key, KeyTypeKeyCompare comp) const;
  260. //! @copydoc ::boost::intrusive::bstree::lower_bound(const key_type &)
  261. //! Additional note: non-const function, splaying is performed.
  262. iterator lower_bound(const key_type &key);
  263. //! @copydoc ::boost::intrusive::bstree::lower_bound(const key_type &)const
  264. //! Additional note: const function, no splaying is performed
  265. const_iterator lower_bound(const key_type &key) const;
  266. //! @copydoc ::boost::intrusive::bstree::lower_bound(const KeyType&,KeyTypeKeyCompare)
  267. //! Additional note: non-const function, splaying is performed for the first
  268. //! element of the equal range of "key"
  269. template<class KeyType, class KeyTypeKeyCompare>
  270. iterator lower_bound(const KeyType &key, KeyTypeKeyCompare comp);
  271. //! @copydoc ::boost::intrusive::bstree::lower_bound(const KeyType&,KeyTypeKeyCompare)const
  272. //! Additional note: const function, no splaying is performed
  273. template<class KeyType, class KeyTypeKeyCompare>
  274. const_iterator lower_bound(const KeyType &key, KeyTypeKeyCompare comp) const;
  275. //! @copydoc ::boost::intrusive::bstree::upper_bound(const key_type &)
  276. //! Additional note: non-const function, splaying is performed for the first
  277. //! element of the equal range of "value"
  278. iterator upper_bound(const key_type &key);
  279. //! @copydoc ::boost::intrusive::bstree::upper_bound(const key_type &)const
  280. //! Additional note: const function, no splaying is performed
  281. const_iterator upper_bound(const key_type &key) const;
  282. //! @copydoc ::boost::intrusive::bstree::upper_bound(const KeyType&,KeyTypeKeyCompare)
  283. //! Additional note: non-const function, splaying is performed for the first
  284. //! element of the equal range of "key"
  285. template<class KeyType, class KeyTypeKeyCompare>
  286. iterator upper_bound(const KeyType &key, KeyTypeKeyCompare comp);
  287. //! @copydoc ::boost::intrusive::bstree::upper_bound(const KeyType&,KeyTypeKeyCompare)const
  288. //! Additional note: const function, no splaying is performed
  289. template<class KeyType, class KeyTypeKeyCompare>
  290. const_iterator upper_bound(const KeyType &key, KeyTypeKeyCompare comp) const;
  291. //! @copydoc ::boost::intrusive::bstree::find(const key_type &)
  292. //! Additional note: non-const function, splaying is performed for the first
  293. //! element of the equal range of "value"
  294. iterator find(const key_type &key);
  295. //! @copydoc ::boost::intrusive::bstree::find(const key_type &)const
  296. //! Additional note: const function, no splaying is performed
  297. const_iterator find(const key_type &key) const;
  298. //! @copydoc ::boost::intrusive::bstree::find(const KeyType&,KeyTypeKeyCompare)
  299. //! Additional note: non-const function, splaying is performed for the first
  300. //! element of the equal range of "key"
  301. template<class KeyType, class KeyTypeKeyCompare>
  302. iterator find(const KeyType &key, KeyTypeKeyCompare comp);
  303. //! @copydoc ::boost::intrusive::bstree::find(const KeyType&,KeyTypeKeyCompare)const
  304. //! Additional note: const function, no splaying is performed
  305. template<class KeyType, class KeyTypeKeyCompare>
  306. const_iterator find(const KeyType &key, KeyTypeKeyCompare comp) const;
  307. //! @copydoc ::boost::intrusive::bstree::equal_range(const key_type &)
  308. //! Additional note: non-const function, splaying is performed for the first
  309. //! element of the equal range of "value"
  310. std::pair<iterator, iterator> equal_range(const key_type &key);
  311. //! @copydoc ::boost::intrusive::bstree::equal_range(const key_type &)const
  312. //! Additional note: const function, no splaying is performed
  313. std::pair<const_iterator, const_iterator> equal_range(const key_type &key) const;
  314. //! @copydoc ::boost::intrusive::bstree::equal_range(const KeyType&,KeyTypeKeyCompare)
  315. //! Additional note: non-const function, splaying is performed for the first
  316. //! element of the equal range of "key"
  317. template<class KeyType, class KeyTypeKeyCompare>
  318. std::pair<iterator, iterator> equal_range(const KeyType &key, KeyTypeKeyCompare comp);
  319. //! @copydoc ::boost::intrusive::bstree::equal_range(const KeyType&,KeyTypeKeyCompare)const
  320. //! Additional note: const function, no splaying is performed
  321. template<class KeyType, class KeyTypeKeyCompare>
  322. std::pair<const_iterator, const_iterator> equal_range(const KeyType &key, KeyTypeKeyCompare comp) const;
  323. //! @copydoc ::boost::intrusive::bstree::bounded_range(const key_type &,const key_type &,bool,bool)
  324. std::pair<iterator,iterator> bounded_range
  325. (const key_type &lower_key, const key_type &upper_key, bool left_closed, bool right_closed);
  326. //! @copydoc ::boost::intrusive::bstree::bounded_range(const KeyType&,const KeyType&,KeyTypeKeyCompare,bool,bool)
  327. template<class KeyType, class KeyTypeKeyCompare>
  328. std::pair<iterator,iterator> bounded_range
  329. (const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed);
  330. //! @copydoc ::boost::intrusive::bstree::bounded_range(const key_type &,const key_type &,bool,bool)const
  331. std::pair<const_iterator, const_iterator> bounded_range
  332. (const key_type &lower_key, const key_type &upper_key, bool left_closed, bool right_closed) const;
  333. //! @copydoc ::boost::intrusive::bstree::bounded_range(const KeyType&,const KeyType&,KeyTypeKeyCompare,bool,bool)const
  334. template<class KeyType, class KeyTypeKeyCompare>
  335. std::pair<const_iterator, const_iterator> bounded_range
  336. (const KeyType& lower_key, const KeyType& upper_key, KeyTypeKeyCompare comp, bool left_closed, bool right_closed) const;
  337. //! @copydoc ::boost::intrusive::bstree::s_iterator_to(reference)
  338. static iterator s_iterator_to(reference value);
  339. //! @copydoc ::boost::intrusive::bstree::s_iterator_to(const_reference)
  340. static const_iterator s_iterator_to(const_reference value);
  341. //! @copydoc ::boost::intrusive::bstree::iterator_to(reference)
  342. iterator iterator_to(reference value);
  343. //! @copydoc ::boost::intrusive::bstree::iterator_to(const_reference)const
  344. const_iterator iterator_to(const_reference value) const;
  345. //! @copydoc ::boost::intrusive::bstree::init_node(reference)
  346. static void init_node(reference value);
  347. //! @copydoc ::boost::intrusive::bstree::unlink_leftmost_without_rebalance
  348. pointer unlink_leftmost_without_rebalance();
  349. //! @copydoc ::boost::intrusive::bstree::replace_node
  350. void replace_node(iterator replace_this, reference with_this);
  351. //! @copydoc ::boost::intrusive::bstree::remove_node
  352. void remove_node(reference value);
  353. #endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  354. //! <b>Requires</b>: i must be a valid iterator of *this.
  355. //!
  356. //! <b>Effects</b>: Rearranges the container so that the element pointed by i
  357. //! is placed as the root of the tree, improving future searches of this value.
  358. //!
  359. //! <b>Complexity</b>: Amortized logarithmic.
  360. //!
  361. //! <b>Throws</b>: Nothing.
  362. void splay_up(iterator i)
  363. { return node_algorithms::splay_up(i.pointed_node(), tree_type::header_ptr()); }
  364. //! <b>Effects</b>: Rearranges the container so that if *this stores an element
  365. //! with a key equivalent to value the element is placed as the root of the
  366. //! tree. If the element is not present returns the last node compared with the key.
  367. //! If the tree is empty, end() is returned.
  368. //!
  369. //! <b>Complexity</b>: Amortized logarithmic.
  370. //!
  371. //! <b>Returns</b>: An iterator to the new root of the tree, end() if the tree is empty.
  372. //!
  373. //! <b>Throws</b>: If the comparison functor throws.
  374. template<class KeyType, class KeyTypeKeyCompare>
  375. iterator splay_down(const KeyType &key, KeyTypeKeyCompare comp)
  376. {
  377. detail::key_nodeptr_comp<value_compare, value_traits>
  378. key_node_comp(comp, &this->get_value_traits());
  379. node_ptr r = node_algorithms::splay_down(tree_type::header_ptr(), key, key_node_comp);
  380. return iterator(r, this->priv_value_traits_ptr());
  381. }
  382. //! <b>Effects</b>: Rearranges the container so that if *this stores an element
  383. //! with a key equivalent to value the element is placed as the root of the
  384. //! tree.
  385. //!
  386. //! <b>Complexity</b>: Amortized logarithmic.
  387. //!
  388. //! <b>Returns</b>: An iterator to the new root of the tree, end() if the tree is empty.
  389. //!
  390. //! <b>Throws</b>: If the predicate throws.
  391. iterator splay_down(const key_type &key)
  392. { return this->splay_down(key, this->key_comp()); }
  393. #ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  394. //! @copydoc ::boost::intrusive::bstree::rebalance
  395. void rebalance();
  396. //! @copydoc ::boost::intrusive::bstree::rebalance_subtree
  397. iterator rebalance_subtree(iterator root);
  398. friend bool operator< (const splaytree_impl &x, const splaytree_impl &y);
  399. friend bool operator==(const splaytree_impl &x, const splaytree_impl &y);
  400. friend bool operator!= (const splaytree_impl &x, const splaytree_impl &y);
  401. friend bool operator>(const splaytree_impl &x, const splaytree_impl &y);
  402. friend bool operator<=(const splaytree_impl &x, const splaytree_impl &y);
  403. friend bool operator>=(const splaytree_impl &x, const splaytree_impl &y);
  404. friend void swap(splaytree_impl &x, splaytree_impl &y);
  405. #endif //#ifdef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  406. };
  407. //! Helper metafunction to define a \c splaytree that yields to the same type when the
  408. //! same options (either explicitly or implicitly) are used.
  409. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  410. template<class T, class ...Options>
  411. #else
  412. template<class T, class O1 = void, class O2 = void
  413. , class O3 = void, class O4 = void
  414. , class O5 = void, class O6 = void>
  415. #endif
  416. struct make_splaytree
  417. {
  418. /// @cond
  419. typedef typename pack_options
  420. < splaytree_defaults,
  421. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  422. O1, O2, O3, O4, O5, O6
  423. #else
  424. Options...
  425. #endif
  426. >::type packed_options;
  427. typedef typename detail::get_value_traits
  428. <T, typename packed_options::proto_value_traits>::type value_traits;
  429. typedef splaytree_impl
  430. < value_traits
  431. , typename packed_options::key_of_value
  432. , typename packed_options::compare
  433. , typename packed_options::size_type
  434. , packed_options::constant_time_size
  435. , typename packed_options::header_holder_type
  436. > implementation_defined;
  437. /// @endcond
  438. typedef implementation_defined type;
  439. };
  440. #ifndef BOOST_INTRUSIVE_DOXYGEN_INVOKED
  441. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  442. template<class T, class O1, class O2, class O3, class O4, class O5, class O6>
  443. #else
  444. template<class T, class ...Options>
  445. #endif
  446. class splaytree
  447. : public make_splaytree<T,
  448. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  449. O1, O2, O3, O4, O5, O6
  450. #else
  451. Options...
  452. #endif
  453. >::type
  454. {
  455. typedef typename make_splaytree
  456. <T,
  457. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  458. O1, O2, O3, O4, O5, O6
  459. #else
  460. Options...
  461. #endif
  462. >::type Base;
  463. BOOST_MOVABLE_BUT_NOT_COPYABLE(splaytree)
  464. public:
  465. typedef typename Base::key_compare key_compare;
  466. typedef typename Base::value_traits value_traits;
  467. typedef typename Base::iterator iterator;
  468. typedef typename Base::const_iterator const_iterator;
  469. typedef typename Base::reverse_iterator reverse_iterator;
  470. typedef typename Base::const_reverse_iterator const_reverse_iterator;
  471. //Assert if passed value traits are compatible with the type
  472. BOOST_STATIC_ASSERT((detail::is_same<typename value_traits::value_type, T>::value));
  473. splaytree()
  474. : Base()
  475. {}
  476. explicit splaytree( const key_compare &cmp, const value_traits &v_traits = value_traits())
  477. : Base(cmp, v_traits)
  478. {}
  479. template<class Iterator>
  480. splaytree( bool unique, Iterator b, Iterator e
  481. , const key_compare &cmp = key_compare()
  482. , const value_traits &v_traits = value_traits())
  483. : Base(unique, b, e, cmp, v_traits)
  484. {}
  485. splaytree(BOOST_RV_REF(splaytree) x)
  486. : Base(BOOST_MOVE_BASE(Base, x))
  487. {}
  488. splaytree& operator=(BOOST_RV_REF(splaytree) x)
  489. { return static_cast<splaytree &>(this->Base::operator=(BOOST_MOVE_BASE(Base, x))); }
  490. template <class Cloner, class Disposer>
  491. void clone_from(const splaytree &src, Cloner cloner, Disposer disposer)
  492. { Base::clone_from(src, cloner, disposer); }
  493. template <class Cloner, class Disposer>
  494. void clone_from(BOOST_RV_REF(splaytree) src, Cloner cloner, Disposer disposer)
  495. { Base::clone_from(BOOST_MOVE_BASE(Base, src), cloner, disposer); }
  496. static splaytree &container_from_end_iterator(iterator end_iterator)
  497. { return static_cast<splaytree &>(Base::container_from_end_iterator(end_iterator)); }
  498. static const splaytree &container_from_end_iterator(const_iterator end_iterator)
  499. { return static_cast<const splaytree &>(Base::container_from_end_iterator(end_iterator)); }
  500. static splaytree &container_from_iterator(iterator it)
  501. { return static_cast<splaytree &>(Base::container_from_iterator(it)); }
  502. static const splaytree &container_from_iterator(const_iterator it)
  503. { return static_cast<const splaytree &>(Base::container_from_iterator(it)); }
  504. };
  505. #endif
  506. } //namespace intrusive
  507. } //namespace boost
  508. #include <boost/intrusive/detail/config_end.hpp>
  509. #endif //BOOST_INTRUSIVE_SPLAYTREE_HPP