我有这个结构(注意它是递归的!):
type Group struct {
Name string
Item []string
Groups []Group
}
我想将一个字符串附加到Item深埋在 Group 数组的层次结构中的数组中。关于这个新项目的路径,我所掌握的唯一信息是它所在组的名称。假设路径是“foo/bar/far”。我想修改 bar 而不覆盖 foo、bar 或“root”数组。基本上,我想编写一个函数,返回一个新的 Group 变量,该变量与原始变量相同,但附加了新字符串。
到目前为止我已经尝试过以下方法:
循环遍历包含路径的所有组名称的数组,如果它们位于当前组中,则将当前组变量设置为该新组。循环完成后,将字符串附加到数组并返回当前组。当然,唯一的问题是根组的其余部分被删除并替换为新的、修改过的组。
代码:
func in(item string, array []Group) (bool, int) {
for i, elem := range array {
if item == elem.Name {
return true, i
} else {
continue
}
}
return false, 0
}
func addItem(list Group, newItem string, path string) Group {
var currentGroup Group = list
if path == "" {
currentGroup.Items = append(currentGroup.Items, newItem)
} else {
for _, elem := range strings.Split(path, "/") {
in, index := in(elem, currentGroup.Groups)
if in {
currentGroup = currentGroup.Groups[index]
}
}
currentGroup.Items = append(currentGroup.Items, newItem)
}
return currentGroup
}
茅侃侃
相关分类