?? hash.h
字號:
struct s_hash{ char *name; int index; int count; struct s_hash *next;};/* name: The string referred to by this hash entry. * * index: The integer identifier for this entry. * * count: Number of times an element with this name has been inserted into * * the table. * * next: A pointer to the next (string,index) entry that mapped to the * * same hash value, or NULL if there are no more entries. */struct s_hash_iterator{ int i; struct s_hash *h_ptr;};/* i: current "line" of the hash table. That is, hash_table[i] is the * * start of the hash linked list for this hash value. * * h_ptr: Pointer to the next hash structure to be examined in the * * iteration. */struct s_hash **alloc_hash_table(void);void free_hash_table(struct s_hash **hash_table);struct s_hash_iterator start_hash_table_iterator(void);struct s_hash *get_next_hash(struct s_hash **hash_table, struct s_hash_iterator *hash_iterator);struct s_hash *insert_in_hash_table(struct s_hash **hash_table, char *name, int next_free_index);struct s_hash *get_hash_entry(struct s_hash **hash_table, char *name);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -