📄 ht_set_1.cc
字号:
// file: ht_set_0.cc//// isip include files//#include "hash_table.h"#include "hash_table_constants.h" // method: set_size_cc//// arguments:// int_4 size : (input) size of hash table//// return: a logical_1 indicating success//// this method sets the size of the hash table//logical_1 Hash_table::set_cells_cc(Hash_cell** cells_a) { // if we already have cells then we need to delete them // if (cells_d != (Hash_cell**)NULL) { delete [] cells_d; } // set the node list // cells_d = cells_a; // exit gracefully // return ISIP_TRUE;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -