hc_cstr_2.cc
来自「这是处理语音信号的程序」· CC 代码 · 共 42 行
CC
42 行
// file: hc_cstr_2.cc//// isip include files//#include "hash_cell.h"#include "hash_cell_constants.h" // method: constructor//// arguments:// void_p item_a : (input) item be stored in hash_cell// char_1* key_str_a : (input) key string // return: none//// this is an overloaded constructor //Hash_cell::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 = (Hash_cell*)NULL; // exit gracefully //}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?