代码搜索:HashList
找到约 80 项符合「HashList」的源代码
代码结果 80
www.eeworm.com/read/434718/7804522
cpp hashlist.cpp
/* 2005-03-05 ---------------------------------------------------------------------
实验内容:
针对某个集体(比如所在班级)中的人名设计一个哈希表,使的平均查找的长度不超过2
完成相应的建表和查表的程序
实验要求:
假设人名为姓名的汉语拼音形式,待填入哈希表的人名工有30个
www.eeworm.com/read/141075/13044778
h hashlist.h
// Copyright (c) 2005,联创科技股份有限公司电信事业部
// All rights reserved.
#ifndef HASHLIST_H_HEADER_INCLUDED_BDD83461
#define HASHLIST_H_HEADER_INCLUDED_BDD83461
//#include
//#include
#incl
www.eeworm.com/read/328008/13052639
h hashlist.h
/*************************************************
针对某个集体中的人名设计一个哈希表,使得平均查找长度不超过R
假设待填入哈希表的人名有30个,平均查找长度为2。
哈希表用除留余数法构造,用伪随机探测在散列法处理冲突。
************************************************
www.eeworm.com/read/328008/13052641
cpp hashlist.cpp
#include "hashList.h"
HashList_T::HashList_T(int numbers)
{
m_numbers=numbers;
m_name_ptr=new vector[m_numbers];
}
HashList_T::~HashList_T(void)
{
delete []m_name_ptr;
}
www.eeworm.com/read/242083/13095880
c hashlist.c
/*
* Copyright (c) 2000-2008
* Author: Weiming Zhou
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without f
www.eeworm.com/read/242083/13095932
h hashlist.h
/*
* Copyright (c) 2000-2008
* Author: Weiming Zhou
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without f
www.eeworm.com/read/318482/13477753
h hashlist.h
/*************************************************
针对某个集体中的人名设计一个哈希表,使得平均查找长度不超过R
假设待填入哈希表的人名有30个,平均查找长度为2。
哈希表用除留余数法构造,用伪随机探测在散列法处理冲突。
************************************************
www.eeworm.com/read/318482/13477754
cpp hashlist.cpp
#include "hashList.h"
HashList_T::HashList_T(int numbers)
{
m_numbers=numbers;
m_name_ptr=new vector[m_numbers];
}
HashList_T::~HashList_T(void)
{
delete []m_name_ptr;
}
www.eeworm.com/read/301158/13865446
dsp hashlist.dsp
# Microsoft Developer Studio Project File - Name="HashList" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/301158/13865447
cpp hashlist.cpp
/* 2005-03-05 ---------------------------------------------------------------------
实验内容:
针对某个集体(比如所在班级)中的人名设计一个哈希表,使的平均查找的长度不超过2
完成相应的建表和查表的程序
实验要求:
假设人名为姓名的汉语拼音形式,待填入哈希表的人名工有30个