- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
作为练习(我是一名学生),我在 C 中实现了一个基本的 string
到 int
哈希表。我(我认为)一切正常, 打印表格函数
除外。它开始工作,但 Windows 在打印出一个存储桶的三个条目后说 “hashtable.exe 已停止工作”,我知道其他的是有效的,因为我可以在命令提示符下检索它们的值我有的东西。这是我的代码,任何建议都很重要:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
const char ESC_STRING[] = "zzzz";
struct a_container {
char *string;
int value;
struct a_container *next;
};
typedef struct a_container Container;
struct c_list {
Container **arr;
int size;
int bits;
};
typedef struct c_list Table;
void print_entry(Container *c) {
printf("%s%s%d", c -> string, ", ", c -> value);
}
void print_table(Table *t) {
Container *e;
int i;
int length = t -> size;
printf("%d\n", length);
for(i = 0; i < length; i++) {
printf("%d\n", i);
if(t -> arr[i] == NULL) printf("%s\n", "Null bucket.");
for(e = t -> arr[i]; e != NULL && e -> string != NULL; e = e -> next) {
print_entry(e);
}
}
}
Container *make_cont() {
Container *new;
new = malloc(sizeof(Container));
if(new == NULL) return NULL;
new -> next = NULL;
return new;
}
Container *make_entry(char *key, int value) {
Container *n = make_cont();
n -> string = key;
n -> value = value;
return n;
}
Table *make_table(int size) {
Table *tab = NULL;
int i;
int j = 2 << (size - 1);
if(size < 1) return NULL;
tab = malloc(sizeof(Table));
tab -> arr = malloc(sizeof(Container) * j);
for(i = 0; i < size; i++) {
tab -> arr[i] = NULL;
}
tab -> size = j;
tab -> bits = size;
return tab;
}
void associate(Table *hashtable, char *key, int value) {
int index = hash_index(hashtable, key, hashtable -> bits);
Container *e = NULL;
Container *n = NULL;
if(hashtable -> arr[index] == NULL) {
e = make_entry(key, value);
hashtable -> arr[index] = e;
return;
}
else {
e = hashtable -> arr[index];
n = make_entry(key, value);
hashtable -> arr[index] = n;
n -> next = e;
}
}
int retrieve(Table *hashtable, char *look) {
int index = hash_index(hashtable, look, hashtable -> bits);
Container *e = NULL;
//if(hashtable -> arr[index] == NULL) exit(1);
e = hashtable -> arr[index];
while(e != NULL && e -> string != NULL && strcmp(look, e -> string) > 0) {
e = e -> next;
}
if(e == NULL || e -> string == NULL || strcmp(look, e -> string) != 0) {
exit(1);
} else {
return e -> value;
}
}
//djb2 algorithm by dan bernstein
//http://www.cse.yorku.ca/~oz/hash.html
unsigned long hash_code(char *key) {
unsigned long hash = 5381;
int c;
while(c = *key++) {
hash = ((hash << 5) + hash) + c;
}
return hash;
}
int hash_index(Table *hashtable, char *query, int bits) {
unsigned long hashCode = hash_code(query);
unsigned int fold = 0;
unsigned int h;
int trim = 2 << (bits - 1);
int mask = trim - 1;
for(h = hashCode; h != 0; h >>= bits) {
fold ^= h;
}
fold &= mask;
return fold;
}
int main() {
char *i;
Table *hashtable = make_table(3);
associate(hashtable, "Erica", 323);
associate(hashtable, "Kitty", 18);
associate(hashtable, "Dawg", 3);
associate(hashtable, "Dahhhhhhg", 43);
associate(hashtable, "Kat", 7);
//print_table(hashtable);
while(1) {
printf("%s", "Look something up: ");
scanf("%s", i);
if(strcmp(i, ESC_STRING) == 0) break;
printf("%d\n", retrieve(hashtable, i));
}
return 0;
}
最佳答案
在为变量赋值之前,您不能使用它的值。在 main
中,您将 i
的值传递给 scanf
,但您尚未为其赋值。因此,您向 scanf
传递了一个垃圾地址,这会导致程序在 scanf
尝试在该无意义位置存储内容时崩溃。
关于c - 哈希表打印 "Stops Working",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20601948/
我正在尝试 grep conf 文件中所有不以 开头的有效行 哈希(或) 任意数量的空格(0 个或多个)和一个散列 下面的正则表达式似乎不起作用。 grep ^[^[[:blank:]]*#] /op
我正在使用哈希通过 URL 发送 protected 电子邮件以激活帐户 Hash::make($data["email"]); 但是哈希结果是 %242y%2410%24xaiB/eO6knk8sL
我是 Perl 的新手,正在尝试从文本文件创建散列。我有一个代码外部的文本文件,旨在供其他人编辑。前提是他们应该熟悉 Perl 并且知道在哪里编辑。文本文件本质上包含几个散列的散列,具有正确的语法、缩
我一直在阅读 perl 文档,但我不太了解哈希。我正在尝试查找哈希键是否存在,如果存在,则比较其值。让我感到困惑的是,我的搜索结果表明您可以通过 if (exists $files{$key}) 找到
我遇到了数字对映射到其他数字对的问题。例如,(1,2)->(12,97)。有些对可能映射到多个其他对,所以我真正需要的是将一对映射到列表列表的能力,例如 (1,2)->((12,97),(4,1))。
我见过的所有 Mustache 文档和示例都展示了如何使用散列来填充模板。我有兴趣去另一个方向。 EG,如果我有这个: Hello {{name}} mustache 能否生成这个(伪代码): tag
我正在尝试使用此公式创建密码摘要以获取以下变量,但我的代码不匹配。不确定我做错了什么,但当我需要帮助时我会承认。希望有人在那里可以提供帮助。 文档中的公式:Base64(SHA1(NONCE + TI
我希望遍历我传递给定路径的这些数据结构(基本上是目录结构)。 目标是列出根/基本路径,然后列出所有子 path s 如果它们存在并且对于每个子 path存在,列出 file从那个子路径。 我知道这可能
我希望有一个包含对子函数的引用的散列,我可以在其中根据用户定义的变量调用这些函数,我将尝试给出我正在尝试做的事情的简化示例。 my %colors = ( vim => setup_vim()
我注意到,在使用 vim 将它们复制粘贴到文件中后尝试生成一些散列时,散列不是它应该的样子。打开和写出文件时相同。与 nano 的行为相同,所以一定有我遗漏的地方。 $ echo -n "foo"
数组和散列作为状态变量存在限制。从 Perl 5.10 开始,我们无法在列表上下文中初始化它们: 所以 state @array = qw(a b c); #Error! 为什么会这样?为什么这是不允
在端口 80 上使用 varnish 5.1 的多网站设置中,我不想缓存所有域。 这在 vcl_recv 中很容易完成。 if ( req.http.Host == "cache.this.domai
基本上,缓存破坏文件上的哈希不会更新。 class S3PipelineStorage(PipelineMixin, CachedFilesMixin, S3BotoStorage): pa
eclipse dart插件在“变量” View 中显示如下内容: 在“值”列中可见的“id”是什么意思? “id”是唯一的吗?在调试期间,如何确定两个实例是否相同?我是否需要在所有类中重写toStr
如何将Powershell中的命令行参数读入数组?就像是 myprogram -file file1 -file file2 -file file3 然后我有一个数组 [file1,file2,fil
我正尝试在 coldfusion 中为我们的安全支付网关创建哈希密码以接受交易。 很遗憾,支付网关拒绝接受我生成的哈希值。 表单发送交易的所有元素,并发送基于五个不同字段生成的哈希值。 在 PHP 中
例如,我有一个包含 5 个元素的哈希: my_hash = {a: 'qwe', b: 'zcx', c: 'dss', d: 'ccc', e: 'www' } 我的目标是每次循环哈希时都返回,但没
我在这里看到了令人作呕的类似问题,但没有一个能具体回答我自己的问题。 我正在尝试以编程方式创建哈希的哈希。我的问题代码如下: my %this_hash = (); if ($user_hash{$u
我正尝试在 coldfusion 中为我们的安全支付网关创建哈希密码以接受交易。 很遗憾,支付网关拒绝接受我生成的哈希值。 表单发送交易的所有元素,并发送基于五个不同字段生成的哈希值。 在 PHP 中
这个问题已经有答案了: Java - how to convert letters in a string to a number? (9 个回答) 已关闭 7 年前。 我需要一种简短的方法将字符串转
我是一名优秀的程序员,十分优秀!