- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个通用的 Hashtable 库,但在使用 lookup() 等函数时我总是遇到问题。预期的输出应该是:
result = thirteen
result = thirteen
result = thirteen
但我得到:
result = thirteen
然后它崩溃了。当我多次调用 lookup() 函数时,似乎会出现此问题,事实上,如果我调用 lookup() 一次,代码运行没有任何问题。
每次我调用 lookup() 函数时,它都会创建一个新的 HashMap,但我看不出拥有更多 HashMap 与问题之间有任何关联。我尝试在每个 lookup() 函数之间使用 free() 方法来解决问题,但问题一直出现。
这是原始代码的一部分:
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
typedef struct _Association Association;
typedef struct _HashMap HashMap;
typedef int (*HashMapCmp)(void*, void*);
/*
Hash Map
*/
struct _HashMap{
Association** array;
int number_of_rows;
int number_of_elements;
HashMapCmp cmp_key;
};
/*
element of the linked Hash Map
*/
struct _Association{
void* key;
void* value;
struct _Association* next;
};
/*
hash function
*/
unsigned int hash(HashMap* map, void* key){
unsigned int hash_value = 0;
hash_value = (*(int*)key * 1500) % map->number_of_rows;
return hash_value;
}
/*
inits a new Hash Map
*/
HashMap* HashMap_new(int table_size, HashMapCmp cmp_key){
HashMap* result = (HashMap*) malloc(sizeof(HashMap));
result->number_of_rows = table_size;
result->array = (Association**) malloc(sizeof(Association*) * result->number_of_rows);
result->number_of_elements = 0;
result->cmp_key = cmp_key;
for(int i = 0; i < result->number_of_rows; i++){
result->array[i] = malloc(sizeof(Association*));
result->array[i] = NULL;
}
return result;
}
/*
inserts a new association in my Hash Map
*/
bool HashMap_insert(HashMap* map, void* key, void* value){
if(map == NULL)
return false;
else{
int index = hash(map, key);
Association* as = malloc(sizeof(Association*));
as->key = key;
as->value = value;
as->next = map->array[index];
map->array[index] = as;
map->number_of_elements++;
return true;
}
}
/*
returns the value of the key passed by parameter
*/
void* HashMap_lookup(HashMap* map, void* key){
int index = hash(map, key);
Association* tmp = map->array[index];
while(tmp != NULL && map->cmp_key(tmp->key,key) != 0){
tmp = tmp->next;
}
return tmp->value;
}
/*
**************************************
tests methods
*/
/*
int pointer (key)
*/
int* int_new(int n) {
int* result = (int*) malloc(sizeof(int));
*result = n;
return result;
}
/*
char* pointer (value)
*/
char** string_new(char* s) {
char** result = (char**) malloc(sizeof(char*)*20);
*result = s;
return result;
}
/*
Integers comparator -> obj1>obj2 = 1, obj1<obj2 = -1, obj1=obj2 = 0
*/
static int compare_ints(int* obj1, int* obj2) {
return *obj1 - *obj2;
}
/*
creation of a 5 elements, high 4, HashMap
*/
HashMap* create_five_elements_hash_map(){
HashMap* map = HashMap_new(4, (HashMapCmp) compare_ints);
HashMap_insert(map, int_new(0), string_new("zero"));
HashMap_insert(map, int_new(13), string_new("thirteen"));
HashMap_insert(map, int_new(22), string_new("twentytwo"));
HashMap_insert(map, int_new(34), string_new("thirtyfour"));
HashMap_insert(map, int_new(41), string_new("fortyone"));
return map;
}
/*
looking inside the Hashmap for the element
*/
void test_lookup(){
HashMap* map = create_five_elements_hash_map();
char** str = (char**)HashMap_lookup(map,int_new(13));
printf("result = %s\n", *str);
}
int main(){
test_lookup();
test_lookup();
test_lookup();
return 0;
}
最佳答案
在 HashMap_insert 中那一行是错误的:
Association* as = malloc(sizeof(Association*));
必须是
Association* as = malloc(sizeof(Association));
或
Association* as = malloc(sizeof(*as));
否则你只为 1 个指针分配内存,而 Association 需要足够的空间来容纳 3 个指针,并且在你设置 as 字段之后你写出分配的 block 未定义的行为。
如果您可以安装 valgrind,我强烈建议您使用它,例如,如果我在我的 PI4 下按照您的定义进行操作,这里有很多消息:
pi@raspberrypi:/tmp $ gcc -g -Wall c.c
pi@raspberrypi:/tmp $ valgrind ./a.out
==6708== Memcheck, a memory error detector
==6708== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==6708== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info
==6708== Command: ./a.out
==6708==
==6708== Invalid write of size 4
==6708== at 0x10628: HashMap_insert (c.c:64)
==6708== by 0x1081B: create_five_elements_hash_map (c.c:124)
==6708== by 0x108F3: test_lookup (c.c:136)
==6708== by 0x10943: main (c.c:143)
==6708== Address 0x49e2244 is 0 bytes after a block of size 4 alloc'd
==6708== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6708== by 0x1060B: HashMap_insert (c.c:61)
==6708== by 0x1081B: create_five_elements_hash_map (c.c:124)
==6708== by 0x108F3: test_lookup (c.c:136)
==6708== by 0x10943: main (c.c:143)
==6708==
==6708== Invalid write of size 4
==6708== at 0x10648: HashMap_insert (c.c:65)
==6708== by 0x1081B: create_five_elements_hash_map (c.c:124)
==6708== by 0x108F3: test_lookup (c.c:136)
==6708== by 0x10943: main (c.c:143)
==6708== Address 0x49e2248 is 4 bytes after a block of size 4 alloc'd
==6708== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6708== by 0x1060B: HashMap_insert (c.c:61)
==6708== by 0x1081B: create_five_elements_hash_map (c.c:124)
==6708== by 0x108F3: test_lookup (c.c:136)
==6708== by 0x10943: main (c.c:143)
==6708==
==6708== Invalid write of size 4
==6708== at 0x10628: HashMap_insert (c.c:64)
==6708== by 0x10843: create_five_elements_hash_map (c.c:125)
==6708== by 0x108F3: test_lookup (c.c:136)
==6708== by 0x10943: main (c.c:143)
==6708== Address 0x49e2334 is 0 bytes after a block of size 4 alloc'd
==6708== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6708== by 0x1060B: HashMap_insert (c.c:61)
==6708== by 0x10843: create_five_elements_hash_map (c.c:125)
==6708== by 0x108F3: test_lookup (c.c:136)
==6708== by 0x10943: main (c.c:143)
...
但更正后:
pi@raspberrypi:/tmp $ valgrind ./a.out
==6844== Memcheck, a memory error detector
==6844== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==6844== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info
==6844== Command: ./a.out
==6844==
result = thirteen
result = thirteen
result = thirteen
==6844==
==6844== HEAP SUMMARY:
==6844== in use at exit: 1,596 bytes in 66 blocks
==6844== total heap usage: 67 allocs, 1 frees, 2,620 bytes allocated
==6844==
==6844== LEAK SUMMARY:
==6844== definitely lost: 108 bytes in 18 blocks
==6844== indirectly lost: 1,488 bytes in 48 blocks
==6844== possibly lost: 0 bytes in 0 blocks
==6844== still reachable: 0 bytes in 0 blocks
==6844== suppressed: 0 bytes in 0 blocks
==6844== Rerun with --leak-check=full to see details of leaked memory
==6844==
==6844== For lists of detected and suppressed errors, rerun with: -s
==6844== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
pi@raspberrypi:/tmp $
所以你不再有未定义的行为了,但这并不意味着现在程序会做你想做的事,但正如你所看到的,你有内存泄漏,我鼓励你解决它们,并了解更多关于它们的信息:
pi@raspberrypi:/tmp $ valgrind --leak-check=full --show-leak-kinds=definite ./a.out
==6967== Memcheck, a memory error detector
==6967== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==6967== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info
==6967== Command: ./a.out
==6967==
result = thirteen
result = thirteen
result = thirteen
==6967==
==6967== HEAP SUMMARY:
==6967== in use at exit: 1,596 bytes in 66 blocks
==6967== total heap usage: 67 allocs, 1 frees, 2,620 bytes allocated
==6967==
==6967== 4 bytes in 1 blocks are definitely lost in loss record 16 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x1073F: int_new (c.c:96)
==6967== by 0x108FF: test_lookup (c.c:137)
==6967== by 0x10943: main (c.c:143)
==6967==
==6967== 4 bytes in 1 blocks are definitely lost in loss record 17 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x1073F: int_new (c.c:96)
==6967== by 0x108FF: test_lookup (c.c:137)
==6967== by 0x10947: main (c.c:144)
==6967==
==6967== 4 bytes in 1 blocks are definitely lost in loss record 18 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x1073F: int_new (c.c:96)
==6967== by 0x108FF: test_lookup (c.c:137)
==6967== by 0x1094B: main (c.c:145)
==6967==
==6967== 16 bytes in 4 blocks are definitely lost in loss record 37 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x1056F: HashMap_new (c.c:47)
==6967== by 0x107EF: create_five_elements_hash_map (c.c:122)
==6967== by 0x108F3: test_lookup (c.c:136)
==6967== by 0x10943: main (c.c:143)
==6967==
==6967== 16 bytes in 4 blocks are definitely lost in loss record 38 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x1056F: HashMap_new (c.c:47)
==6967== by 0x107EF: create_five_elements_hash_map (c.c:122)
==6967== by 0x108F3: test_lookup (c.c:136)
==6967== by 0x10947: main (c.c:144)
==6967==
==6967== 16 bytes in 4 blocks are definitely lost in loss record 39 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x1056F: HashMap_new (c.c:47)
==6967== by 0x107EF: create_five_elements_hash_map (c.c:122)
==6967== by 0x108F3: test_lookup (c.c:136)
==6967== by 0x1094B: main (c.c:145)
==6967==
==6967== 512 (16 direct, 496 indirect) bytes in 1 blocks are definitely lost in loss record 55 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x104F7: HashMap_new (c.c:40)
==6967== by 0x107EF: create_five_elements_hash_map (c.c:122)
==6967== by 0x108F3: test_lookup (c.c:136)
==6967== by 0x10943: main (c.c:143)
==6967==
==6967== 512 (16 direct, 496 indirect) bytes in 1 blocks are definitely lost in loss record 56 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x104F7: HashMap_new (c.c:40)
==6967== by 0x107EF: create_five_elements_hash_map (c.c:122)
==6967== by 0x108F3: test_lookup (c.c:136)
==6967== by 0x10947: main (c.c:144)
==6967==
==6967== 512 (16 direct, 496 indirect) bytes in 1 blocks are definitely lost in loss record 57 of 57
==6967== at 0x4847690: malloc (vg_replace_malloc.c:309)
==6967== by 0x104F7: HashMap_new (c.c:40)
==6967== by 0x107EF: create_five_elements_hash_map (c.c:122)
==6967== by 0x108F3: test_lookup (c.c:136)
==6967== by 0x1094B: main (c.c:145)
==6967==
==6967== LEAK SUMMARY:
==6967== definitely lost: 108 bytes in 18 blocks
==6967== indirectly lost: 1,488 bytes in 48 blocks
==6967== possibly lost: 0 bytes in 0 blocks
==6967== still reachable: 0 bytes in 0 blocks
==6967== suppressed: 0 bytes in 0 blocks
==6967==
==6967== For lists of detected and suppressed errors, rerun with: -s
==6967== ERROR SUMMARY: 9 errors from 9 contexts (suppressed: 0 from 0)
pi@raspberrypi:/tmp $
关于c - 通用 HashMap,不需要的输出 (C),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62169333/
我使用 AppFuse 创建项目已经有一段时间了。我已经知道有两种方法可以开发 DAO 和 Manager 类: GenericDao/GenericManager 方法 UniversalDao/U
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
在普通的单线程程序中,捕获异常只需要通过try ... catch ... finally ...代码块就可以了。那么,在并发情况下,比如在父线程中启动了子线程,如何在父线程中捕获来自子线程的异常,
假设我有一个这样的界面 interface Example { first_name: string, last_name: string, home_town: string
我已经成为 hg 用户几年了,对此我很高兴! 我必须开始一个我以前从未做过的项目。我们的想法是开发一个具有批处理模式和 GUI 的软件。 因此,批处理模式和 GUI 模式都有共同的源,但每种模式也都包
我可以在Silverlight中使用generic.xaml来设置应用程序中所有TextBlock的样式吗? 我原以为它会起作用,但它没
顶部 map 有 3 个子 map ,每个子 map 都有不同的对象。 像下面的代码,如何将通用添加到 map 顶部? Map top = new ConcurrentHashMap();
我想创建一个hashmap,其中键是接口(interface)A,值是接口(interface)B。然后我想用实现A和B的类来初始化它。是否可以使用java泛型来做到这一点? 也就是说,我想要类似的东
Enum 位于 java.lang.Enum 中,Object 位于 java.lang.Object 中>。那么,为什么 Enum 不是 Object 呢? (我收到一个java.lang.Clas
我有一种方法,check,它有两个 HashMap 作为参数。这些映射的键是 String,值是 String 或 Arraylist。 哪个是更好的解决方案: public static boole
我启动了针对iPhone的应用程序,现在我也想将其应用程序用于iPad。当我开始做iPhone项目时,即使我添加了iPad xib,它也无法正确显示,如何转换我的项目同时适用于iPhone和iPad(
这行代码(代码1)有什么区别 auto l1 = [](auto a) { static int l = 0; std::cout operator() for type const char*) 被
使用 Generic#to,我可以获得 case class 的 HList 表示: import shapeless._ case class F(x: Int, y: String) scala>
我有一个 BiDiMap 类。如何使其通用,不仅接受 String 而且接受 Object 类型的对象作为输入参数,同时保持所有原始函数正常工作。例如,我希望能够使用函数 put() 和 Object
我在编译 foreach 循环时遇到问题。我很确定这是我的泛型处理的问题,因为该错误是对象兼容性问题。我已搜索解决方案,但找不到任何可以解决该问题的内容。 这是定义 Iterable adjList
大约有 6 个 POJO 类(域实体、DTO、DMO)都具有几乎相同的字段。为了从一个对象转换为另一个对象,我传递一个对象并调用它的 getter 将其设置到另一个对象中。 private UserT
有没有什么方法可以创建一个通用的 for 循环,它可以正确地循环遍历数组或对象?我知道我可以编写以下 for 循环,但它也会遍历将添加到数组的其他属性。 for (item in x) { co
我已经有一段时间没有写js了,显然有点生疏了。试图理解以下问题。 getCurrentPosition successCallback 中的警报正确显示纬度,但最后一行警报未定义。为什么我的 clie
请帮助我,我从来没有用 xib 为 iPhone/iPad 制作过通用的 UIViewControllers。如何使用 .m 和 .h 文件以及 _iphone.xib 和 _ipad.xib 创建类
我正在尝试创建一个 createRequest 函数,我可以将其重新用于我的所有网络调用,有些需要发布 JSON 而其他则不需要,所以我正在考虑创建一个采用可选通用对象的函数;理论上是这样的: str
我是一名优秀的程序员,十分优秀!