标签: c list
我被要求在给定的通用结构中返回列表中的第一个Node,但是我很难找到最有效的方法。
做一个前一个指针(除了下一个)是唯一的方法吗?
struct Map_t { Map next; MapDataElement currentData; MapKeyElement currentKey; };