亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? hashtable.h

?? linux下編程用 編譯軟件
?? H
?? 第 1 頁 / 共 3 頁
字號:
// Hashtable implementation used by containers -*- C++ -*-// Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.//// This file is part of the GNU ISO C++ Library.  This library is free// software; you can redistribute it and/or modify it under the// terms of the GNU General Public License as published by the// Free Software Foundation; either version 2, or (at your option)// any later version.// This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details.// You should have received a copy of the GNU General Public License along// with this library; see the file COPYING.  If not, write to the Free// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,// USA.// As a special exception, you may use this file as part of a free software// library without restriction.  Specifically, if other files instantiate// templates or use macros or inline functions from this file, or you compile// this file and link it with other files to produce an executable, this// file does not by itself cause the resulting executable to be covered by// the GNU General Public License.  This exception does not however// invalidate any other reasons why the executable file might be covered by// the GNU General Public License./* * Copyright (c) 1996,1997 * Silicon Graphics Computer Systems, Inc. * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Silicon Graphics makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. * * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Hewlett-Packard Company makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. * *//** @file ext/hashtable.h *  This file is a GNU extension to the Standard C++ Library (possibly *  containing extensions from the HP/SGI STL subset). */#ifndef _HASHTABLE_H#define _HASHTABLE_H 1// Hashtable class, used to implement the hashed associative containers// hash_set, hash_map, hash_multiset, and hash_multimap.#include <vector>#include <iterator>#include <bits/stl_algo.h>#include <bits/stl_function.h>#include <ext/hash_fun.h>namespace __gnu_cxx{  using std::size_t;  using std::ptrdiff_t;  using std::forward_iterator_tag;  using std::input_iterator_tag;  using std::_Construct;  using std::_Destroy;  using std::distance;  using std::vector;  using std::pair;  using std::__iterator_category;  template <class _Val>    struct _Hashtable_node    {      _Hashtable_node* _M_next;      _Val _M_val;    };  template <class _Val, class _Key, class _HashFcn, class _ExtractKey, 	    class _EqualKey, class _Alloc = std::allocator<_Val> >    class hashtable;  template <class _Val, class _Key, class _HashFcn,	    class _ExtractKey, class _EqualKey, class _Alloc>    struct _Hashtable_iterator;  template <class _Val, class _Key, class _HashFcn,	    class _ExtractKey, class _EqualKey, class _Alloc>    struct _Hashtable_const_iterator;  template <class _Val, class _Key, class _HashFcn,	    class _ExtractKey, class _EqualKey, class _Alloc>    struct _Hashtable_iterator    {      typedef hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>        _Hashtable;      typedef _Hashtable_iterator<_Val, _Key, _HashFcn,				  _ExtractKey, _EqualKey, _Alloc>        iterator;      typedef _Hashtable_const_iterator<_Val, _Key, _HashFcn,					_ExtractKey, _EqualKey, _Alloc>        const_iterator;      typedef _Hashtable_node<_Val> _Node;      typedef forward_iterator_tag iterator_category;      typedef _Val value_type;      typedef ptrdiff_t difference_type;      typedef size_t size_type;      typedef _Val& reference;      typedef _Val* pointer;            _Node* _M_cur;      _Hashtable* _M_ht;      _Hashtable_iterator(_Node* __n, _Hashtable* __tab)      : _M_cur(__n), _M_ht(__tab) {}      _Hashtable_iterator() {}      reference      operator*() const      { return _M_cur->_M_val; }      pointer      operator->() const      { return &(operator*()); }      iterator&      operator++();      iterator      operator++(int);      bool      operator==(const iterator& __it) const      { return _M_cur == __it._M_cur; }      bool      operator!=(const iterator& __it) const      { return _M_cur != __it._M_cur; }    };  template <class _Val, class _Key, class _HashFcn,	    class _ExtractKey, class _EqualKey, class _Alloc>    struct _Hashtable_const_iterator    {      typedef hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>        _Hashtable;      typedef _Hashtable_iterator<_Val,_Key,_HashFcn,				  _ExtractKey,_EqualKey,_Alloc>        iterator;      typedef _Hashtable_const_iterator<_Val, _Key, _HashFcn,					_ExtractKey, _EqualKey, _Alloc>        const_iterator;      typedef _Hashtable_node<_Val> _Node;      typedef forward_iterator_tag iterator_category;      typedef _Val value_type;      typedef ptrdiff_t difference_type;      typedef size_t size_type;      typedef const _Val& reference;      typedef const _Val* pointer;            const _Node* _M_cur;      const _Hashtable* _M_ht;      _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)      : _M_cur(__n), _M_ht(__tab) {}      _Hashtable_const_iterator() {}      _Hashtable_const_iterator(const iterator& __it)      : _M_cur(__it._M_cur), _M_ht(__it._M_ht) {}      reference      operator*() const      { return _M_cur->_M_val; }      pointer      operator->() const      { return &(operator*()); }      const_iterator&      operator++();      const_iterator      operator++(int);      bool      operator==(const const_iterator& __it) const      { return _M_cur == __it._M_cur; }      bool      operator!=(const const_iterator& __it) const      { return _M_cur != __it._M_cur; }    };  // Note: assumes long is at least 32 bits.  enum { _S_num_primes = 28 };  static const unsigned long __stl_prime_list[_S_num_primes] =    {      53ul,         97ul,         193ul,       389ul,       769ul,      1543ul,       3079ul,       6151ul,      12289ul,     24593ul,      49157ul,      98317ul,      196613ul,    393241ul,    786433ul,      1572869ul,    3145739ul,    6291469ul,   12582917ul,  25165843ul,      50331653ul,   100663319ul,  201326611ul, 402653189ul, 805306457ul,      1610612741ul, 3221225473ul, 4294967291ul    };  inline unsigned long  __stl_next_prime(unsigned long __n)  {    const unsigned long* __first = __stl_prime_list;    const unsigned long* __last = __stl_prime_list + (int)_S_num_primes;    const unsigned long* pos = std::lower_bound(__first, __last, __n);    return pos == __last ? *(__last - 1) : *pos;  }  // Forward declaration of operator==.    template <class _Val, class _Key, class _HF, class _Ex,	    class _Eq, class _All>    class hashtable;  template <class _Val, class _Key, class _HF, class _Ex,	    class _Eq, class _All>    bool    operator==(const hashtable<_Val, _Key, _HF, _Ex, _Eq, _All>& __ht1,	       const hashtable<_Val, _Key, _HF, _Ex, _Eq, _All>& __ht2);  // Hashtables handle allocators a bit differently than other  // containers do.  If we're using standard-conforming allocators, then  // a hashtable unconditionally has a member variable to hold its  // allocator, even if it so happens that all instances of the  // allocator type are identical.  This is because, for hashtables,  // this extra storage is negligible.  Additionally, a base class  // wouldn't serve any other purposes; it wouldn't, for example,  // simplify the exception-handling code.    template <class _Val, class _Key, class _HashFcn,	    class _ExtractKey, class _EqualKey, class _Alloc>    class hashtable    {    public:      typedef _Key key_type;      typedef _Val value_type;      typedef _HashFcn hasher;      typedef _EqualKey key_equal;      typedef size_t            size_type;      typedef ptrdiff_t         difference_type;      typedef value_type*       pointer;      typedef const value_type* const_pointer;      typedef value_type&       reference;      typedef const value_type& const_reference;      hasher      hash_funct() const      { return _M_hash; }      key_equal      key_eq() const      { return _M_equals; }    private:      typedef _Hashtable_node<_Val> _Node;    public:      typedef typename _Alloc::template rebind<value_type>::other allocator_type;      allocator_type      get_allocator() const      { return _M_node_allocator; }    private:      typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;      typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;      typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type;      _Node_Alloc _M_node_allocator;      _Node*      _M_get_node()      { return _M_node_allocator.allocate(1); }      void      _M_put_node(_Node* __p)      { _M_node_allocator.deallocate(__p, 1); }    private:      hasher                _M_hash;      key_equal             _M_equals;      _ExtractKey           _M_get_key;      _Vector_type          _M_buckets;      size_type             _M_num_elements;          public:      typedef _Hashtable_iterator<_Val, _Key, _HashFcn, _ExtractKey,				  _EqualKey, _Alloc>        iterator;      typedef _Hashtable_const_iterator<_Val, _Key, _HashFcn, _ExtractKey,					_EqualKey, _Alloc>        const_iterator;      friend struct      _Hashtable_iterator<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>;      friend struct      _Hashtable_const_iterator<_Val, _Key, _HashFcn, _ExtractKey,				_EqualKey, _Alloc>;    public:      hashtable(size_type __n, const _HashFcn& __hf,		const _EqualKey& __eql, const _ExtractKey& __ext,		const allocator_type& __a = allocator_type())      : _M_node_allocator(__a), _M_hash(__hf), _M_equals(__eql),	_M_get_key(__ext), _M_buckets(__a), _M_num_elements(0)      { _M_initialize_buckets(__n); }      hashtable(size_type __n, const _HashFcn& __hf,		const _EqualKey& __eql,		const allocator_type& __a = allocator_type())      : _M_node_allocator(__a), _M_hash(__hf), _M_equals(__eql),	_M_get_key(_ExtractKey()), _M_buckets(__a), _M_num_elements(0)      { _M_initialize_buckets(__n); }      hashtable(const hashtable& __ht)      : _M_node_allocator(__ht.get_allocator()), _M_hash(__ht._M_hash),      _M_equals(__ht._M_equals), _M_get_key(__ht._M_get_key),      _M_buckets(__ht.get_allocator()), _M_num_elements(0)      { _M_copy_from(__ht); }      hashtable&      operator= (const hashtable& __ht)      {	if (&__ht != this)	  {	    clear();	    _M_hash = __ht._M_hash;	    _M_equals = __ht._M_equals;	    _M_get_key = __ht._M_get_key;	    _M_copy_from(__ht);	  }	return *this;      }      ~hashtable()      { clear(); }      size_type      size() const      { return _M_num_elements; }      size_type      max_size() const      { return size_type(-1); }      bool      empty() const      { return size() == 0; }      void      swap(hashtable& __ht)      {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本色道久久加勒比精品| 亚洲黄色录像片| 精东粉嫩av免费一区二区三区| 欧美日韩亚洲综合在线 | 亚洲天堂久久久久久久| 丁香啪啪综合成人亚洲小说| 国产精品国产a级| 欧美自拍丝袜亚洲| 奇米777欧美一区二区| 精品国产在天天线2019| 国产一区二区三区在线观看免费| 国产日韩综合av| 91免费版在线| 日韩电影免费在线看| 精品国产免费人成电影在线观看四季 | 一个色妞综合视频在线观看| 欧美日韩国产色站一区二区三区| 日韩电影在线观看电影| 26uuuu精品一区二区| 国产成人av一区二区三区在线 | 成人午夜伦理影院| 亚洲综合男人的天堂| 欧美一区二区三区四区视频| 国产一区在线视频| 亚洲精品乱码久久久久久| 91精品久久久久久久91蜜桃| 精品午夜一区二区三区在线观看| 中文欧美字幕免费| 在线成人免费视频| 国产激情一区二区三区四区| 一区二区在线观看免费视频播放| 51精品久久久久久久蜜臀| 国产一区二区三区黄视频| 自拍偷拍国产亚洲| 精品国产乱码久久久久久牛牛| 成人手机在线视频| 免费观看久久久4p| 中文字幕综合网| 精品对白一区国产伦| 色哟哟一区二区| 狠狠色丁香久久婷婷综| 亚洲一区二区偷拍精品| 日本一区二区三区国色天香| 欧美三区在线观看| 国产不卡免费视频| 久久国产精品99久久久久久老狼 | 91麻豆精品国产无毒不卡在线观看| 国产精品99久久久久久久女警 | 成人激情免费网站| 免费精品99久久国产综合精品| 亚洲欧美一区二区视频| 精品国产一区二区亚洲人成毛片 | 五月婷婷久久丁香| 中文字幕一区二| 国产网站一区二区三区| 777久久久精品| 欧洲中文字幕精品| 成人精品鲁一区一区二区| 蜜桃一区二区三区在线观看| 亚洲综合丝袜美腿| 国产精品麻豆99久久久久久| 亚洲精品在线三区| 日韩精品一区二区三区视频在线观看 | 亚洲三级电影网站| 中文一区在线播放 | 国产精品三级av| 国产亚洲va综合人人澡精品| 日韩欧美视频在线| 欧美一区二区三区在线看| 欧美日韩在线播放| 欧美三级电影网站| 欧美日韩国产一区二区三区地区| 色婷婷久久99综合精品jk白丝 | 91福利视频久久久久| 成人18视频在线播放| 国产99久久久久| 国产成人精品免费| 国产91富婆露脸刺激对白| 国产一区二区三区国产| 精品一区二区三区久久| 久久99这里只有精品| 久久成人久久鬼色| 久久电影网站中文字幕 | 精品国产髙清在线看国产毛片| 欧美日韩精品一区二区在线播放| 欧美三级中文字幕在线观看| 欧美丝袜丝交足nylons图片| 欧美性一区二区| 这里只有精品99re| 日韩午夜电影av| 久久午夜老司机| 欧美激情在线观看视频免费| 中文字幕成人网| 亚洲欧美日韩国产中文在线| 一区二区理论电影在线观看| 亚洲综合视频在线观看| 三级在线观看一区二区| 蜜桃视频一区二区| 国产精品亚洲视频| 91在线无精精品入口| 在线观看区一区二| 51精品久久久久久久蜜臀| 欧美不卡一区二区三区| 国产日韩三级在线| 一区二区三区欧美久久| 日韩精品成人一区二区三区| 国模一区二区三区白浆| 不卡的av电影| 欧美天天综合网| 日韩一级欧美一级| 中文字幕成人网| 香蕉久久一区二区不卡无毒影院| 激情综合一区二区三区| 成人av午夜电影| 在线成人av网站| 国产蜜臀av在线一区二区三区| 亚洲欧美另类图片小说| 日本亚洲最大的色成网站www| 国产v综合v亚洲欧| 欧美日韩一二三| 国产精品理伦片| 免费成人美女在线观看.| av中文一区二区三区| 欧美一级一区二区| 综合av第一页| 国内精品伊人久久久久av一坑| 91在线porny国产在线看| 日韩写真欧美这视频| 亚洲视频一二三区| 国产一区在线视频| 91精品国产综合久久福利| 亚洲欧洲日韩在线| 激情伊人五月天久久综合| 色8久久人人97超碰香蕉987| 久久综合一区二区| 三级欧美在线一区| 日本韩国精品一区二区在线观看| 精品国一区二区三区| 日韩影院免费视频| 色欲综合视频天天天| 国产丝袜在线精品| 久久国产精品99精品国产| 精品视频在线免费观看| 国产精品欧美精品| 国产高清成人在线| 日韩你懂的电影在线观看| 亚洲已满18点击进入久久| 成人av网站在线观看免费| 精品欧美一区二区在线观看| 亚洲国产裸拍裸体视频在线观看乱了 | 日韩免费高清av| 亚洲成在线观看| 91香蕉视频在线| 国产精品成人午夜| 国产伦精品一区二区三区视频青涩| 欧美人狂配大交3d怪物一区| 亚洲伦理在线免费看| 成人小视频免费在线观看| 久久精品夜夜夜夜久久| 国产一区啦啦啦在线观看| 精品国产自在久精品国产| 老司机精品视频导航| 欧美一区二区在线不卡| 亚洲国产精品久久人人爱蜜臀| 色狠狠桃花综合| 亚洲一区二区在线视频| 在线观看日韩电影| 亚洲国产精品久久人人爱 | 欧美日韩成人在线一区| 一区二区日韩电影| 欧美三级午夜理伦三级中视频| 亚洲一级二级三级| 欧美精品日韩一本| 日本不卡免费在线视频| 日韩女同互慰一区二区| 久久99久久99| 国产视频一区二区在线观看| 韩国三级在线一区| 久久久99精品免费观看| 国产成人亚洲综合色影视| 日本一区二区三区国色天香 | 色诱亚洲精品久久久久久| 亚洲精品国产一区二区三区四区在线| 91社区在线播放| 亚洲成a人在线观看| 欧美一级专区免费大片| 国产a精品视频| 亚洲精品少妇30p| 欧美一区二区三区播放老司机| 精品一区二区三区免费视频| 中文字幕第一区二区| 91色婷婷久久久久合中文| 一区二区在线观看av| 日韩一区二区三区四区| 国产激情一区二区三区| 亚洲精品va在线观看| 欧美一区午夜精品| 国产一区二区视频在线| 亚洲欧洲日韩av| 欧美一级xxx|