📄 ll_remove_1.cc
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -