代码搜索:HashMap
找到约 8,488 项符合「HashMap」的源代码
代码结果 8,488
www.eeworm.com/read/222728/14678349
h hashmap.h
#ifndef hashmapH
#define hashmapH
#include "common.h"
typedef struct hashmap_entry {
struct hashmap_entry *next;
unsigned int key;
char *value;
} HASHMAP_ENTRY;
typedef struct hashmap
www.eeworm.com/read/222728/14678386
c hashmap.c
#include "hashmap.h"
HASHMAP *hashmap(void){
HASHMAP *res = (HASHMAP*)malloc(sizeof(HASHMAP));
int i;
memset(res, 0, sizeof(HASHMAP));
for(i = 0; i < 1024; i++){
res->list[i] = NULL
www.eeworm.com/read/222728/14678405
h hashmap.h
#ifndef hashmapH
#define hashmapH
#include "common.h"
typedef struct hashmap_entry {
struct hashmap_entry *next;
unsigned int key;
char *value;
} HASHMAP_ENTRY;
typedef struct hashmap
www.eeworm.com/read/222728/14678446
c hashmap.c
#include "hashmap.h"
HASHMAP *hashmap(void){
HASHMAP *res = (HASHMAP*)malloc(sizeof(HASHMAP));
int i;
memset(res, 0, sizeof(HASHMAP));
for(i = 0; i < 1024; i++){
res->list[i] = NULL
www.eeworm.com/read/222728/14678461
h hashmap.h
#ifndef hashmapH
#define hashmapH
#include "common.h"
typedef struct hashmap_entry {
struct hashmap_entry *next;
unsigned int key;
char *value;
} HASHMAP_ENTRY;
typedef struct hashmap
www.eeworm.com/read/482538/1286974
hh hashmap.hh
#ifndef CLICK_HASHMAP_HH
#define CLICK_HASHMAP_HH
#include
CLICK_DECLS
class HashMap_Arena;
class HashMap_ArenaFactory;
// K AND V REQUIREMENTS:
//
// K::K(const K &)
// k1 == k
www.eeworm.com/read/482538/1287008
cc hashmap.cc
/*
* hashmap.{cc,hh} -- a hash table template
* Eddie Kohler
*
* Copyright (c) 2000 Mazu Networks, Inc.
* Copyright (c) 2003 International Computer Science Institute
*
* Permission is hereby gr
www.eeworm.com/read/475888/1378471
java hashmap.java
/*
* @(#)HashMap.java 1.45 06/10/10
*
* Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* This program is