дереве?
struct node
{
unsigned char* data;
struct node* right_child;
struct node* left_child;
int count;
};
...
struct node* searchWord(struct node* p, unsigned char* word)
{
if ((p == NULL) || (strcmp(p->data,word)==0))
return p;
else if (strcmp(p->data, word) > 0)
return searchWord(p->right_child, word);
else if (strcmp(p->data, word) < 0)
return searchWord(p->left_child, word);
}
Может return не в том месте?
Точно, два последние return следовало поменять местами, спасибо
+, ночной кодинг даёт побочки в виде невнимательности)
Обсуждают сегодня