⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 allocator.hpp

📁 一个C++写的KdTree容器模板库
💻 HPP
字号:
/** \file * Defines the allocator interface as used by the KDTree class. * * \author Martin F. Krafft <libkdtree@pobox.madduck.net> */#ifndef INCLUDE_KDTREE_ALLOCATOR_HPP#define INCLUDE_KDTREE_ALLOCATOR_HPP#include <cstddef>#include <kdtree++/node.hpp>namespace KDTree{  template <typename _Tp, typename _Alloc>    class _Alloc_base    {    public:      typedef _Node<_Tp> _Node;      typedef typename _Node::_Base_ptr _Base_ptr;      typedef _Alloc allocator_type;      _Alloc_base(allocator_type const& __A)        : _M_node_allocator(__A) {}      allocator_type      get_allocator() const      {        return _M_node_allocator;      }    protected:      allocator_type _M_node_allocator;            _Node*      _M_allocate_node()      {        return _M_node_allocator.allocate(1);      }      void      _M_deallocate_node(_Node* const __P)      {        return _M_node_allocator.deallocate(__P, 1);      }      void      _M_construct_node(_Node* __p, _Tp const __V = _Tp(),                        _Base_ptr const __PARENT = NULL,                        _Base_ptr const __LEFT = NULL,                        _Base_ptr const __RIGHT = NULL)      {        new (__p) _Node(__V, __PARENT, __LEFT, __RIGHT);      }      void      _M_destroy_node(_Node* __p)      {        _M_node_allocator.destroy(__p);      }    };} // namespace KDTree#endif // include guard/* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. * libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net> * and Sylvain Bougerel <sylvain.bougerel.devel@gmail.com> distributed under the * terms of the Artistic License 2.0. See the ./COPYING file in the source tree * root for more information. * * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES * OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -