ll_cstr_2.cc

来自「这是处理语音信号的程序」· CC 代码 · 共 28 行

CC
28
字号
// file: ll_cstr_2.cc//// isip include files//#include "link_list.h"#include "link_list_constants.h"// method: constructor//// arguments://  const Link_list &list : (input) the list to copy//// return: none//// this is a copy constructor of the class//Link_list::Link_list(const 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 + -
显示快捷键?