gpt4 book ai didi

go - 如何编辑埋在递归结构中的数组

转载 作者:数据小太阳 更新时间:2023-10-29 03:08:16 27 4
gpt4 key购买 nike

我有这个结构(注意它是递归的!):

type Group struct {
Name string
Item []string
Groups []Group
}

我想将一个字符串附加到 Item 数组,该数组深埋在 Group 数组的层次结构中。我所掌握的关于这个新项目路径的唯一信息是它所在的组的名称。假设路径是“foo/bar/far”。我想在不覆盖 foo、bar 或“root”数组的情况下修改 bar。基本上,我想编写一个函数来返回一个与原始变量相同但附加了新字符串的新组变量。

到目前为止,我已经尝试了以下方法:

遍历包含路径的所有组名称的数组,如果它们在当前组中,则将当前组变量设置为该新组。循环完成后,将字符串附加到数组并返回当前组。当然,唯一的问题是根组的其余部分将被删除并替换为新的修改后的组。

代码:

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
}

最佳答案

我想您可以将组作为指针传递给 addItem 函数,并忽略该函数的返回值

有点像

func addItem(list *Group, newItem string, path string) Group {
var currentGroup *Group = list
if path == "" {
currentGroup.Item = append(currentGroup.Item, newItem)
} else {
for _, elem := range strings.Split(path, "/") {
in, index := in(elem, currentGroup.Groups)
if in {
currentGroup = &currentGroup.Groups[index]
}
}
currentGroup.Item = append(currentGroup.Item, newItem)
}

return *currentGroup
}

完整示例位于: https://play.golang.org/p/_1BSF2LDQrE

关于go - 如何编辑埋在递归结构中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57262813/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com