由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个小问题
相关主题
typedef const char *month Table[3]一个C++的问题
一个hash table的简单问题[合集] perl symbol tables 一问
问个hash table问题interview question: (RB tree vs. hash table)
急问:VS2008里如何调用DLL请问关于hash table的大小设定问题。 (转载)
算法题一个弱弱的问问跟hash有关的问题 (转载)
C下有没有好用的hash table函数库?问个简单的C++问题
c++ stl里面有hash table吗?问个c++删除链表(linked list)节点的问题
怎么把hash of hash 存到数据库里?问个SQL的问题
相关话题的讨论汇总
话题: hash话题: node话题: table话题: string话题: const
进入Programming版参与讨论
1 (共1页)
w*****n
发帖数: 980
1
一个hash_table,main中总是出错,
初级问题,请帮助
struct node
{
node():_next(NULL){}
string _value;
int _index;
node* _next;
};
typedef node* hash_node;
class hash_table
{
public:
hash_table(hash_node* table);
~hash_table();
void Insert(const string& word);
int Search(const string& word);
private:
unsigned int hash(const string& word);
private:
hash_node* _table;
};
void main()
{
hash_node* t = new hash_node();
k****f
发帖数: 3794
2
你这个代码不可能编译对的
你把原始的代码贴出来

【在 w*****n 的大作中提到】
: 一个hash_table,main中总是出错,
: 初级问题,请帮助
: struct node
: {
: node():_next(NULL){}
: string _value;
: int _index;
: node* _next;
: };
: typedef node* hash_node;

w*****n
发帖数: 980
3
谢谢回答
下面是完整的code
#include
#include
using namespace std;
struct node
{
node():_next(NULL){}
string _value;
int _index;
node* _next;
};
typedef node* hash_node;
const int MULT = 31;
const int TABLE = 10000;
class hash_table
{
public:
hash_table(hash_node* table);
~hash_table();
void Insert(const string& word);
private:
unsigned int hash(const string& word);
private:
hash_node* _tabl

【在 k****f 的大作中提到】
: 你这个代码不可能编译对的
: 你把原始的代码贴出来

P********e
发帖数: 2610
4
错误非常多,什么地方的CODE啊,你google一个,自己改吧
_table[h], initialization before use.
in hash:
for(;*p;++p)

【在 w*****n 的大作中提到】
: 谢谢回答
: 下面是完整的code
: #include
: #include
: using namespace std;
: struct node
: {
: node():_next(NULL){}
: string _value;
: int _index;

S*********g
发帖数: 5298
5
看一下这句
for (; p; p++)

【在 w*****n 的大作中提到】
: 谢谢回答
: 下面是完整的code
: #include
: #include
: using namespace std;
: struct node
: {
: node():_next(NULL){}
: string _value;
: int _index;

1 (共1页)
进入Programming版参与讨论
相关主题
问个SQL的问题算法题一个
A question about page tableC下有没有好用的hash table函数库?
问个很挠头的简单问题 (转载)c++ stl里面有hash table吗?
问个设计问题怎么把hash of hash 存到数据库里?
typedef const char *month Table[3]一个C++的问题
一个hash table的简单问题[合集] perl symbol tables 一问
问个hash table问题interview question: (RB tree vs. hash table)
急问:VS2008里如何调用DLL请问关于hash table的大小设定问题。 (转载)
相关话题的讨论汇总
话题: hash话题: node话题: table话题: string话题: const