ll_remove_1.cc
来自「这是处理语音信号的程序」· CC 代码 · 共 33 行
CC
33 行
// file: ll_remove_1.cc//// isip include files//#include "link_list.h"#include "link_list_constants.h"// method: remove_cc//// arguments:// void_p item : (input) an item to remove from the list//// return: a logical_1 to indicate success//// this method removes the specified item from the linked list//logical_1 Link_list::remove_cc(void_p item_a) { // find the node containing this item // Link_node* node = (Link_node*)NULL; for (node = head_d; node != (Link_node*)NULL; node = node->get_next_cc()) { if (node->get_item_cc() == item_a) { break; } } // remove the specified node from the list and exit gracefully // return remove_cc(node);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?