基本数据结构// A header for a Go map.type hmap struct { // 元素个数,调用 len(map) 时,直接返回此值count intflags uint8// buckets 的对数 log_2B uint8// ove...