map的结构
map实现的两个关键数据结构
hmap 定义了map的结构bmap 定义了hmap.buckets中每个bucket的结构
// A header for a Go map.
type hmap struct {count int // 元素的个数flags uint8 // 状态标记,标记map当前状态,是否正在写入B …
可靠数据传输(rdt:Reliable Data Transfer)的原理
rdt在应用层,传输层和数据链路层都很重要是网络TOP10问题之一信道的不可靠特点决定了可靠数据传输rdt的复杂性rdt_send: 被上层(如应用层)调用࿰…