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

📄 associative_ptr_container.hpp

📁 C++的一个好库。。。现在很流行
💻 HPP
字号:
//
// Boost.Pointer Container
//
//  Copyright Thorsten Ottosen 2003-2005. Use, modification and
//  distribution is subject to the Boost Software License, Version
//  1.0. (See accompanying file LICENSE_1_0.txt or copy at
//  http://www.boost.org/LICENSE_1_0.txt)
//
// For more information, see http://www.boost.org/libs/ptr_container/
//


#ifndef BOOST_PTR_CONTAINER_DETAIL_ASSOCIATIVE_PTR_CONTAINER_HPP
#define BOOST_PTR_CONTAINER_DETAIL_ASSOCIATIVE_PTR_CONTAINER_HPP

#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma once
#endif

#include <boost/ptr_container/detail/reversible_ptr_container.hpp>

namespace boost
{

namespace ptr_container_detail
{
    template
    < 
        class Config, 
        class CloneAllocator
    >
    class associative_ptr_container : 
        public reversible_ptr_container<Config,CloneAllocator>
    {
        typedef reversible_ptr_container<Config,CloneAllocator> 
                                base_type;

        typedef BOOST_DEDUCED_TYPENAME base_type::scoped_deleter 
                                scoped_deleter;

    public: // typedefs
        typedef BOOST_DEDUCED_TYPENAME Config::key_type
                                key_type;
        typedef BOOST_DEDUCED_TYPENAME Config::key_compare
                                key_compare;
        typedef BOOST_DEDUCED_TYPENAME Config::value_compare
                                value_compare;
        typedef BOOST_DEDUCED_TYPENAME Config::iterator
                                iterator; 
        typedef BOOST_DEDUCED_TYPENAME Config::const_iterator
                                const_iterator; 
        typedef BOOST_DEDUCED_TYPENAME base_type::size_type
                                size_type;

    public: // foundation
        
       template< class Compare, class Allocator >
       associative_ptr_container( const Compare& comp,
                                    const Allocator& a )
         : base_type( comp, a ) 
       { }

       template< class InputIterator, class Compare, class Allocator >
       associative_ptr_container( InputIterator first, InputIterator last,
                                    const Compare& comp,
                                    const Allocator& a ) 
         : base_type( first, last, comp, a ) 
       { }

       template< class PtrContainer >
       associative_ptr_container( std::auto_ptr<PtrContainer> r ) 
         : base_type( r, key_compare() )
       { }
       
       template< class PtrContainer >
       void operator=( std::auto_ptr<PtrContainer> r )
       {
           base_type::operator=( r );
       }

    public: // associative container interface
        key_compare key_comp() const 
        {
            return this->c_private().key_comp();
        }
        
        value_compare value_comp() const
        {
            return this->c_private().value_comp();
        }
        
        iterator erase( iterator before ) // nothrow 
        {
            BOOST_ASSERT( !this->empty() ); 
            BOOST_ASSERT( before != this->end() );
            
            this->remove( before );                      // nothrow
            iterator res( before );                      // nothrow   
            ++res;                                       // nothrow
            this->c_private().erase( before.base() );    // nothrow
            return res;                                  // nothrow
        }
        
        size_type erase( const key_type& x ) // nothrow
        {
            BOOST_ASSERT( !this->empty() );        
            iterator i = find( x );                     // nothrow
            if( i == this->end() )                      // nothrow
                return 0;                               // nothrow
            this->remove( i );                          // nothrow
            return this->c_private().erase( i.base() ); // nothrow
        }
        
        iterator erase( iterator first, 
                        iterator last ) // nothrow 
        {
            BOOST_ASSERT( !this->empty() );

            iterator res( last );                                // nothrow
            if( res != this->end() )
                ++res;                                           // nothrow

            this->remove( first, last );                         // nothrow
            this->c_private().erase( first.base(), last.base() );// nothrow
            return res;                                          // nothrow
        }

    protected:

        void multi_transfer( iterator object, 
                             associative_ptr_container& from ) // strong
        {
            BOOST_ASSERT( &from != this );
            BOOST_ASSERT( !from.empty() && "Cannot transfer from empty container" );

            this->c_private().insert( *object.base() );     // strong
            from.c_private().erase( object.base() );        // nothrow
        }

        size_type multi_transfer( iterator first, 
                                  iterator last, 
                                  associative_ptr_container& from ) // basic
        {
            BOOST_ASSERT( &from != this );
            BOOST_ASSERT( !from.empty() && "Cannot transfer from empty container" );

            size_type res = 0;
            for( ; first != last; )
            {
                BOOST_ASSERT( first != from.end() );
                this->c_private().insert( *first.base() );     // strong
                iterator to_delete( first );
                ++first;
                from.c_private().erase( to_delete.base() );    // nothrow
                ++res;
            }

            return res;
        }

        bool single_transfer( iterator object, 
                              associative_ptr_container& from ) // strong
        {
            BOOST_ASSERT( &from != this );
            BOOST_ASSERT( !from.empty() && "Cannot transfer from empty container" );

            std::pair<BOOST_DEDUCED_TYPENAME base_type::ptr_iterator,bool> p = 
                this->c_private().insert( *object.base() );     // strong
            if( p.second )
                from.c_private().erase( object.base() );        // nothrow

            return p.second;
        }

        size_type single_transfer( iterator first, 
                                   iterator last, 
                                   associative_ptr_container& from ) // basic
        {
            BOOST_ASSERT( &from != this );
            BOOST_ASSERT( !from.empty() && "Cannot transfer from empty container" );

            size_type res = 0;
            for( ; first != last; )
            {
                BOOST_ASSERT( first != from.end() );
                std::pair<BOOST_DEDUCED_TYPENAME base_type::ptr_iterator,bool> p = 
                    this->c_private().insert( *first.base() );     // strong
                iterator to_delete( first );
                ++first;
                if( p.second )
                {
                    from.c_private().erase( to_delete.base() );   // nothrow
                    ++res;
                }
            }
            return res;
        }
        
     }; // class 'associative_ptr_container'
    
} // namespace 'ptr_container_detail'
    
} // namespace 'boost'


#endif

⌨️ 快捷键说明

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