首頁 > 後端開發 > Golang > 主體

為什麼移動 Go 切片中的元素會導致意外結果?

DDD
發布: 2024-11-02 10:07:02
原創
152 人瀏覽過

Why Does Shifting Elements in a Go Slice Cause Unexpected Results?

在切片內移動元素

在 Go 中,操作切片通常涉及調整其內容。常見的操作是將元素從切片內的一個位置移動到另一個位置。然而,直接的方法可能會導致意想不到的結果。

讓我們來看一個典型的範例,其中我們嘗試將元素從位置indexToRemove移動到indexWhereToInsert:

<code class="go">indexToRemove := 1
indexWhereToInsert := 4

slice := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}

slice = append(slice[:indexToRemove], slice[indexToRemove+1:]...)
fmt.Println("slice:", slice)

newSlice := append(slice[:indexWhereToInsert], 1)
fmt.Println("newSlice:", newSlice)

slice = append(newSlice, slice[indexWhereToInsert:]...)
fmt.Println("slice:", slice)</code>
登入後複製

此程式碼產生輸出:

slice: [0 2 3 4 5 6 7 8 9]
newSlice: [0 2 3 4 1]
slice: [0 2 3 4 1 1 6 7 8 9]
登入後複製

但是,我們期望得到以下輸出:

slice: [0 2 3 4 5 6 7 8 9]
newSlice: [0 2 3 4 1]
slice: [0 2 3 4 1 5 6 7 8 9]
登入後複製

識別問題

問題是由我們移動元素的方式引起的。在範例中,我們先刪除indexToRemove處的元素,然後將其插入indexWhereToInsert處。然而,第二個操作修改了indexWhereToInsert之後元素的索引。結果,最初位於indexWhereToInsert的元素被插入到刪除的元素之後。

用於移動元素的自訂函數

為了解決這個問題,我們可以建立自訂函數來在a中刪除和插入元素片。這些函數在內部處理索引調整:

<code class="go">func insertInt(array []int, value int, index int) []int {
    return append(array[:index], append([]int{value}, array[index:]...)...)
}

func removeInt(array []int, index int) []int {
    return append(array[:index], array[index+1:]...)
}

func moveInt(array []int, srcIndex int, dstIndex int) []int {
    value := array[srcIndex]
    return insertInt(removeInt(array, srcIndex), value, dstIndex)
}</code>
登入後複製

使用範例:

<code class="go">func main() {
    slice := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}

    fmt.Println("slice: ", slice)

    slice = insertInt(slice, 2, 5)
    fmt.Println("slice: ", slice)

    slice = removeInt(slice, 5)
    fmt.Println("slice: ", slice)

    slice = moveInt(slice, 1, 4)
    fmt.Println("slice: ", slice)
}</code>
登入後複製

輸出:

slice:  [0 1 2 3 4 5 6 7 8 9]
slice:  [0 1 2 3 4 2 5 6 7 8 9]
slice:  [0 1 2 3 4 5 6 7 8 9]
slice:  [0 2 3 4 1 5 6 7 8 9]
登入後複製

以上是為什麼移動 Go 切片中的元素會導致意外結果?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!