📄 tr_hc_cstr_2.cc
字号:
// file: tr_hc_cstr_2.cc//// isip include files//#include "train_hash_cell.h"#include "train_hash_cell_constants.h" // method: constructor//// arguments:// void_p item_a : (input) item be stored in Train_Hash_cell// char_1* key_str_a : (input) key string // return: none//// this is an overloaded constructor //Train_Hash_cell::Train_Hash_cell(void_p item_a, char_1* key_str_a) { // set the key string // key_str_d = new char_1[strlen((char*)key_str_a) + (int_4)1]; strcpy((char*)key_str_d, (char*)key_str_a); // set the item pointer // item_d = (void_p)item_a; // initialize the integer key // key_vec_d = (int_4*)NULL; key_size_d = 0; // initialize pointer to next cell // next_d = (Train_Hash_cell*)NULL; // debug level // debug_level_d = ISIP_DEBUG_NONE; // exit gracefully //}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -