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

📄 ptree.h

📁 about sound recognition.i want to downlod
💻 H
字号:
/** * @file   ptree.h * @author Akinobu LEE * @date   Fri Feb 11 17:27:24 2005 * * <EN> * @brief Patricia binary tree for data search * * This is a structure to build a patricia binary tree for searching * various data or IDs from its name string. * </EN> * <JA> * @brief デ〖タ浮瑚脱绕脱パトリシア浮瑚腾の年盗 * * 矢机误からその叹涟を积つ菇陇挛や滦炳するIDを浮瑚するための * パトリシア腾の菇陇挛ですˉ * </JA> * * $Revision: 1.3 $ *  *//* * Copyright (c) 1991-2006 Kawahara Lab., Kyoto University * Copyright (c) 2000-2005 Shikano Lab., Nara Institute of Science and Technology * Copyright (c) 2005-2006 Julius project team, Nagoya Institute of Technology * All rights reserved */#ifndef __PATRICIA_TREE_H__#define __PATRICIA_TREE_H__/// Patricia binary tree node, to search related pointer from stringtypedef struct _apatnode {  /**   * @brief Node value   *   * Pointer adreess if this is leaf node (in case both @a left0 and @a right1   * are NULL), or threshold bit if this is branch node (otherwise)   *    */  union {    void        *data;		///< Pointer address at leaf    int		thres_bit;	///< Threshold bit at branch  } value;  struct _apatnode *left0;	///< Link to left node (bit=0)  struct _apatnode *right1;	///< Link to right node (bit=1)} APATNODE;/// Another patricia binary tree node, to search integer value from stringtypedef struct _patnode {  /**   * @brief Node value   *   * Integer value if this is leaf node (in case both @a left0 and @a right1   * are NULL), or threshold bit if this is branch node (otherwise)   *    */  union {    int         data;		///< Integer value at leaf    int		thres_bit;	///< Threshold bit at branch  } value;  struct _patnode *left0;	///< Link to left node (bit=0)  struct _patnode *right1;	///< Link to right node (bit=1)} PATNODE;int testbit(char *str, int bitplace);int where_the_bit_differ(char *str1, char *str2);PATNODE *make_ptree(char **words, int *data, int wordsnum, int bitplace);void disp_ptree(PATNODE *node, int level);int ptree_search_data(char *str, PATNODE *rootnode);PATNODE *ptree_make_root_node(int data);void ptree_add_entry(char *str, int data, char *matchstr, PATNODE **rootnode);void free_ptree(PATNODE *rootnode);void *aptree_search_data(char *str, APATNODE *rootnode);APATNODE *aptree_make_root_node(void *data);void aptree_add_entry(char *str, void *data, char *matchstr, APATNODE **rootnode);void aptree_remove_entry(char *str, APATNODE **rootnode);void aptree_traverse_and_do(APATNODE *node, void (*callback)(void *));void free_aptree(APATNODE *rootnode);#endif /* __PATRICIA_TREE_H__ */

⌨️ 快捷键说明

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