Как освободить память в дереве префиксов? (ANSI C)
Я пытался освободить память в функции dict_free(), но она не работает, и я не знаю почему. Я что-то пропустил? Не могу понять, что не так.
Редактировать: если я вызываю free () в dict_free(), я ожидаю увидеть, что указатель free'd указывает на NULL, но этого не происходит.
Вот мой код:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct Dict
{
struct Dict *branches[256];
int index;
}Dict;
void dict_insert_depth(unsigned char*,Dict *,int);
void dict_insert(unsigned char*,Dict *);
void dict_free(Dict *d)
{
if(d!=NULL){
int i;
for(i=0; i<256; i++){
if(d->branches[i] != NULL){
dict_free(d->branches[i]);
free(d->branches[i]);
printf("Is it free?? %s\n",d==NULL?"yes":"no");
}
}
}
}
/**
* Insert word into dictionaR
*/
void dict_insert(unsigned char *w, Dict *d)
{
dict_insert_depth(w,d,0);
}
void dict_insert_depth(unsigned char *w, Dict *d, int depth)
{
if(strlen(w) > depth){
int ch = w[depth];
if(d->branches[ch]==NULL){
d->branches[ch] = malloc(sizeof(struct Dict));
dict_insert_depth(w,d->branches[ch],depth+1);
}else{
dict_insert_depth(w,d->branches[ch],depth+1);
}
}
}
/**
* Check whether a word exists in the dictionary
* @param w Word to be checked
* @param d Full dictionary
* @return If found return 1, otherwise 0
*/
int in_dict(unsigned char *w, Dict *d)
{
return in_dict_depth(w,d,0);
}
int in_dict_depth(unsigned char *w, Dict *d, int depth)
{
if(strlen(w)>depth){
int ch = w[depth];
if(d->branches[ch]){
return in_dict_depth(w, d->branches[ch], depth+1);
}else{
return 0;
}
}else{
return 1;
}
}
2 ответа
Ваш бесплатный код выглядит хорошо, за исключением того, что он не сможет освободить корневой узел.
Ваш тест на свободу не верен. free
не будет устанавливать любую переменную в NULL
, Часто хорошей идеей является сделать это явно, поэтому вы не должны читать уже освобожденную память:
free(d->branches[i]);
d->branches[i] = NULL; // clobber pointer to freed memory
Чтобы решить проблему с корневым узлом, и, возможно, немного чище, сделайте это:
void dict_free(Dict *d)
{
if(d!=NULL){
int i;
for(i=0; i<256; i++){
if(d->branches[i] != NULL){
dict_free(d->branches[i]);
d->branches[i] = NULL;
}
}
free(d);
}
}
dict_free(d->branches[i]);
free(d->branches[i]);
printf("Is it free?? %s\n",d==NULL?"yes":"no");
Это проверяет d, но вы не модифицируете d в цикле. Поскольку вы проверяете, что d не равно нулю выше, это всегда печатает нет.
void dict_free(Dict* d) {
if (d) {
for(int i = 0; i < 256; i++) {
if (d->branches[i]) {
dict_free(d->branches[i]);
free(d->branches[i]);
d->branches[i] = 0; // mark this branch as freed
// important if d is reused, and since dict_free doesn't
// free(d), it could be
}
}
}
}
Я следовал вашему существующему коду, не освобождая d, но вы можете изменить положение, чтобы Dict всегда размещался одинаково (например, добавьте функцию dict_new), а dict_free также освобождает переданный объект.