ll_insert_0.cc

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

CC
46
字号
// file: ll_insert_0.cc//// isip include files//#include "link_list.h"#include "link_list_constants.h"// method: insert_cc//// arguments://  Link_node* node : (input) a link node to insert in the list//// return: a logical_1 to indicate success//// this method inserts the specified node at the end of the linked list//logical_1 Link_list::insert_cc(Link_node* node_a) {  // exit ungracefully if the node is null  //  if (node_a == (Link_node*)NULL) {    return ISIP_FALSE;  }  // if there is no node present set this at head  //  if (head_d == (Link_node*)NULL) {    head_d = node_a;  }    // otherwise insert the new node at the end of the list  //  else {    curr_d->insert_cc(node_a);  }    // set the current position to the end  //  curr_d = node_a;  // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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