「ぎょーむ日誌」目次に戻る | KuboWeb top に戻る | twilog | atom

ぎょーむ日誌 2002-04-18

苦情・お叱りは, たいへんお手数かけて恐縮ですが, 久保 (kubo@ees.hokudai.ac.jp) までお知らせください.

2002 年 04 月 18 日 (木)

	class grid_hash_fuction
	{
	public:
		size_t operator()(const Grid& g)
		{
			static hash<char*>	char_hash_function;
			static char 	buffer[32];
			sprintf(buffer, format, g.X(), g.Y(), g.Z());
			return char_hash_function(buffer);
		}
	};

	int main (void)
	{
		hash_map<Grid, int, grid_hash_fuction>	ghm;
		...
	}
	class grid_hash_fuction
	{
	public:
		size_t operator()(const Grid& g) const
		...

KuboLog | KuboWeb