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

📄 lxn_cstr_0.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: lxn_cstr_0.cc//// isip include files//#include "lex_node.h"#include "lex_node_constants.h"// method: destructor//// arguments: none//// return: none//// this is the default destructor//Lex_node::~Lex_node() {  // delete the child link list  //  if (child_d != (Link_list*)NULL) {    delete child_d;    child_d = (Link_list*)NULL;  }    // delete the word list  //  if (words_d != (Link_list*)NULL) {    delete words_d;    words_d = (Link_list*)NULL;  }  // reset the scalars  //  phone_d = LXN_NULL_PHONE;  score_d = LXN_LM_SCORE;  word_end_d = ISIP_FALSE;  type_d = LXN_WORDGRAPH;  // exit gracefully  //}

⌨️ 快捷键说明

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