node结构引入虚拟节点概念

This commit is contained in:
白茶清欢 2023-03-28 18:31:28 +08:00
parent ed02fb1c26
commit 99a5bb1888

View File

@ -13,6 +13,7 @@ package tree
//
// Date : 18:12 2023/3/28
type Node struct {
IsVirtual bool // 是否虚拟节点, 主要应对输入的原始数据为list这一场景
Value interface{} // 节点的值
ValueType string // 数据类型 int64 / float64 / map / list / nil
Key string // 节点的key名称(输入的原始名称)