Stl ¹þÏ£±í»ù´¡Í·Îļþ
¹þÏ£±í»ù´¡Í·Îļþ£¬±È½Ï¼ò¶Ì£¬Ïà¶Ô·±Ã¦µÄDarkSpyÒ²ÓÐʱ¼äдעÊ͵Ä˵£¬hehe[code]
/*
* Copyright (c) 1996-1998
* 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.
*
*/
/* NOTE: This is an internal header file, included by other STL headers.
* You should not attempt to use it directly.
*/
#ifndef __SGI_STL_HASH_FUN_H
#define __SGI_STL_HASH_FUN_H
#include <stddef.h>
__STL_BEGIN_NAMESPACE
template <class _Key> struct hash { }; //¿ÕÄ£°åÀà
inline size_t __stl_hash_string(const char* __s)
{
unsigned long __h = 0;
for ( ; *__s; ++__s)
__h = 5*__h + *__s;
return size_t(__h); //·µ»ØÖ¸Õ볤¶È
}
//__STL_TEMPLATE_NULL ÔÚ stl_config.h ¶¨Ò壬Ϊģ°åÌØÀýµÄ define
//__STL_TEMPLATE_NULL = template <>
__STL_TEMPLATE_NULL struct hash<char*>
{
size_t operator()(const char* __s) const { return __stl_hash_string(__s); }
//ÖØÔØ ()£¬·µ»Ø __stl_hash_string º¯Êý¼ÆËãµÄÒ»¸öÖ¸Õ볤¶ÈµÄ unsigned
};
//Ï൱ÓÚ template <> struct hash<char *> Ä£°åÀàÌØÀý»¯
//±ÈÆð template struct<char *> hash; Ö±½ÓʵÀý»¯µÄ»°£¬Ä¿±ê´úÂë¿ÉÒÔËõСºÃ¶à±¶¡£Ð§ÂÊÒ²ºÜ¸ß
__STL_TEMPLATE_NULL struct hash<const char*> //ÌØÀý const char *
{
size_t operator()(const char* __s) const { return __stl_hash_string(__s); }
};
__STL_TEMPLATE_NULL struct hash<char> { //ÌØÀý char
size_t operator()(char __x) const { return __x; } //·µ»ØÒ»¸ö×Ö·û
};
__STL_TEMPLATE_NULL struct hash<unsigned char> { //ÌØÀý unsigned char
size_t operator()(unsigned char __x) const { return __x; }
//·µ»Ø unsigned char
};
__STL_TEMPLATE_NULL struct hash<signed char> { //ÌØÀý signed char
size_t operator()(unsigned char __x) const { return __x; }
//·µ»ØµÄÒ²ÊÇ unsingned char Ò»¸ö×Ö·û
};
__STL_TEMPLATE_NULL struct hash<short> { //ÌØÀý shor
size_t operator()(short __x) const { return __x; }
//·µ»Ø short int
};
__STL_TEMPLATE_NULL struct hash<unsigned short> { //ÌØÀý unsigned short
size_t operator()(unsigned short __x) const { return __x; }
//·µ»Ø unsigned short
};
__STL_TEMPLATE_NULL struct hash<int> { //ÌØÀý int
size_t operator()(int __x) const { return __x; }
//·µ»Ø int
};
__STL_TEMPLATE_NULL struct hash<unsigned int> { //ÌØÀý unsigned int
size_t operator()(unsigned int __x) const { return __x; }
//·µ»Øunsigned int
};
__STL_TEMPLATE_NULL struct hash<long> { //ÌØÀý long
size_t operator()(long __x) const { return __x; }
//·µ»Ølong
};
__STL_TEMPLATE_NULL struct hash<unsigned long> {//ÌØÀýunsigned long
size_t operator()(unsigned long __x) const { return __x; }
//·µ»Ø unsigned long
};
__STL_END_NAMESPACE
#endif /* __SGI_STL_HASH_FUN_H */
// Local Variables:
// mode:C++
// End:
[/code]
Ò³:
[1]