⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dictionary.h

📁 使用具有增量学习的监控式学习方法。包括几个不同的分类算法。
💻 H
字号:
#ifndef DICTIONARY_H#define DICTIONARY_H#include <glib.h>#include <stdio.h>typedef struct dict_ dict;dict *dict_new (void);intdict_set_reverse (dict *dt);voiddict_free (dict *dt);dict *dict_load (FILE *f);intdict_save (FILE *f, dict *dt);intdict_insert_word (dict *dt, const char *word);intdict_find_word (dict *dt, const char *word);intdict_remove_word_num (dict *dt, int n);intdict_get_size (dict *dt);voiddict_print (dict *dt);voiddict_for_each (dict *dt, GHFunc wf);typedef void (* word_func) (void *wd);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -