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

📄 lxn_cstr_3.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: lxn_cstr_3.cc//// isip include files//#include "lex_node.h"#include "lex_node_constants.h"// method: constructor//// arguments://  Lex_node& node: (input) the lexical node to copy//// return: none//// this is a copy constructor//Lex_node::Lex_node(Lex_node& node_a) {  // copy parameters  //  phone_d = node_a.phone_d;  score_d = node_a.score_d;  word_end_d = node_a.word_end_d;  type_d = node_a.type_d;      child_d = (Link_list*)NULL;  if (node_a.child_d != (Link_list*)NULL) {    child_d = new Link_list(*node_a.child_d);  }    words_d = (Link_list*)NULL;  if (node_a.words_d != (Link_list*)NULL) {    words_d = new Link_list(*node_a.words_d);  }    // exit gracefully  //}

⌨️ 快捷键说明

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