代码搜索:Hashtable
找到约 7,854 项符合「Hashtable」的源代码
代码结果 7,854
www.eeworm.com/read/124620/14557093
h hashtable.h
/*
* 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 gra
www.eeworm.com/read/122139/14718818
h hashtable.h
// Larbin
// Sebastien Ailleret
// 23-11-99 -> 14-01-00
/* class hashTable
* This class is in charge of making sure we don't crawl twice the same url
*/
#ifndef HASHTABLE_H
#define HASHTABLE_H
#i
www.eeworm.com/read/122139/14718851
cc hashtable.cc
// Larbin
// Sebastien Ailleret
// 23-11-99 -> 17-01-00
#include
#include
#include
#include
#include
#include
#include "types.h
www.eeworm.com/read/221812/14719834
h hashtable.h
enum KindOfItem {Empty, Active, Deleted};
struct HashItem
{
DataType data;
KindOfItem info;
HashItem(KindOfItem i = Empty): info(i){}
HashItem(const DataType &D, KindOfItem i = Empty): d
www.eeworm.com/read/221812/14719840
cpp hashtable.cpp
#include
typedef int KeyType;
#include "DataType.h"
#include "HashTable.h"
void main(void)
{
HashTable myHashTable(13);
DataType a[] = {180,750,600,430,541,900,460}, item;
www.eeworm.com/read/221293/14747909
class hashtable.class
www.eeworm.com/read/120429/14803834
java hashtable.java
public class HashTable implements Cloneable {
private Entry[] buckets = new Entry[11];
private static class Entry {
Object key;
Object value;
Entry next;
www.eeworm.com/read/120429/14803836
java hashtable.java
// Page 49
public class HashTable implements Cloneable {
private Entry[] buckets = new Entry[11];
private static class Entry {
Object key;
Object value;
Entry
www.eeworm.com/read/219293/14889352
java hashtable.java
www.eeworm.com/read/216515/15005035
h hashtable.h
template
struct HashTableNode
{
T varValue;
N varName;
HashTableNode *next;
N Scope;
N alias; //will hold the full name of whatever it is pointing to.
};
te