搜索资源列表
datastr
- C/C++常用的数据结构类 包括: array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和 < 运算符) avltr
Brutus7BETAv01
- 一款值得研究的国际象棋引擎程序,很初级,适合作为编写人工智能的入门代码。兼容winboard Gui.-Brutus Chess is a winboard-compatible chess engine. It ain t the strongest, but be carefull, a millenium or two ago he knocked out Caesar! You can play chess against Brutus either using the command-
HashTable
- Hash table implementation in c language
EasyChat
- 这是用C#做的一个简易的Windows平台下的聊天软件,包括了客户端和服务端的全部源码,注释很详细,有兴趣学习.net应用开发的同学可以下载来学习学习。这个示例包含了了C/S架构软件开发的很多基础知识和思想。 功能包括群发,私聊,发送震动,收到消息发声,闪屏提示等等,大致类似于QQ的多人聊天会话功能。 涉及到的知识主要包括: 1. TCP/IP通信,包括TcpClient , TcpListener , Socket , NetworkStream等几个用于TC
hashtable_in_c++
- Hash tables are very common data structures. They provide efficient key based operations to insert and search for data in containers. This code contains a simple implementation in c++.
HashTable
- This program is the realization of HashTable developed in the C++ Programming Language. And development tool is Visual Studio. Thank you.
hashtable
- Hashtable implemented in C with chainhashing
hashtable
- 哈希表函数,纯C语言编写的哈希表计算函数-Hash table functions, written in pure C language function to calculate the hash table
C
- C实现的一些数据结构,包括队列,散列表,栈,二叉树,图的拓扑排序-some data structure in C,including queue,hashtable,stack,tree,graph topsort
hashtable
- Hashtable Algortithm developed in C++ multiple examples in the source code, also efectiveness calculated
HashTable
- 线性哈希表的简单实现。哈希表,是根据关键码值(Key value)而直接进行访问的数据结构(Simple implementation of linear hash table)