2017年1月7日
摘要: 看到这么一句stack_.template Top<ValueType>()->SetObjectRaw(members, (SizeType)memberCount, GetAllocator());后面的不用管,只看 stack_.template Top<ValueType>();为什么调用时 阅读全文
posted @ 2017-01-07 21:03 莫水千流 阅读(637) 评论(0) 推荐(0)
摘要: 散列表(hash table)在直接寻址的方式下,具有关键字k的元素被放到槽k中。在散列方式下,该元素放在槽h(k)中;即利用散列函数hash funciton h , 由关键字k计算出槽的位置。这里,函数h将关键字的全域U映射到散列表hash table T[0....m-1]的槽位上h:U -> 阅读全文
posted @ 2017-01-07 09:53 莫水千流 阅读(538) 评论(0) 推荐(0)