tr_ll_cstr_2.cc
来自「这是处理语音信号的程序」· CC 代码 · 共 28 行
CC
28 行
// file: tr_ll_cstr_2.cc//// isip include files//#include "train_link_list.h"#include "train_link_list_constants.h"// method: constructor//// arguments:// const Train_Link_list &list : (input) the list to copy//// return: none//// this is a copy constructor of the class//Train_Link_list::Train_Link_list(const Train_Link_list &list_a) { // copy the link pointers // head_d = list_a.head_d; curr_d = list_a.curr_d; // exit gracefully //}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?