哈希代码求助
求助:
在敲hash的代码时发现:
pair<const K,E> **table;
table=new pair<const K,E>* [divisior];//divisior已定义
for(int i=0;i<divisior;i++){
table[i]=NULL;
}
(*table)->first //敲出箭头后有可用的对象first,second
(table[0])->first //敲出箭头后没有可用的对象first,second 请问有没有大佬帮忙解决
