代码搜索:HashMap
找到约 8,488 项符合「HashMap」的源代码
代码结果 8,488
www.eeworm.com/read/357508/10208169
c hashmap.c
/****************************************************************************
* Copyright (c) 1998-2001,2002 Free Software Foundation, Inc. *
*
www.eeworm.com/read/443760/7623351
txt hashmap.txt
<mark>HashMap</mark> 使用小结
本文重点介绍<mark>HashMap</mark>。首先介绍一下什么是Map。在数组中我们是通过数组下标来对其内容索引的,而在Map中我们通过对象来对对象进行索引,用来索引的对象叫做key,其对应的对象叫做value。在下文中会有例子具体说明。
再来看看<mark>HashMap</mark>和TreeMap有什么区别。<mark>HashMap</mark>通过hashcode对其内容进行快速查找,而TreeMap中所有的元素都保 ...
www.eeworm.com/read/141268/5775003
h hashmap.h
/////////////////////////////////////////////////////////////////////////////
// Name: hashmap.h
// Purpose: wxHashMap class
// Author: Mattia Barbon
// Modified by:
// Created:
www.eeworm.com/read/104260/6205804
java hashmap.java
/*
* Java core library component.
*
* Copyright (c) 1999
* Archie L. Cobbs. All rights reserved.
* Copyright (c) 1999
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file
www.eeworm.com/read/103451/6215531
h hashmap.h
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........:
// Description...:
// Revisions.....:
//================================
www.eeworm.com/read/263434/11363039
java hashmap.java
/*
* @(#)HashMap.java 1.57 03/01/23
*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.util;
import
www.eeworm.com/read/125782/14464047
c hashmap.c
/****************************************************************************
* Copyright (c) 1998-2001,2002 Free Software Foundation, Inc. *
*
www.eeworm.com/read/222728/14678333
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] =