代码搜索:HashList
找到约 80 项符合「HashList」的源代码
代码结果 80
www.eeworm.com/read/432517/8597935
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/432517/8597989
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/285280/8856595
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/285280/8856615
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/284563/8916965
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/284563/8917036
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/354937/10311346
h hashlist.h
/*************************************************
针对某个集体中的人名设计一个哈希表,使得平均查找长度不超过R
假设待填入哈希表的人名有30个,平均查找长度为2。
哈希表用除留余数法构造,用伪随机探测在散列法处理冲突。
************************************************
www.eeworm.com/read/354937/10311349
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/463126/7187293
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/463126/7187310
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