中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

golang中slice處理遇到的一個關于引用的坑

發布時間:2020-06-19 09:38:01 來源:網絡 閱讀:402 作者:ustb80 欄目:編程語言

前兩天在解掃地機器人算法的問題時,遇到一個坑

部分代碼如下:

func move2(startPoint Point) [][]Point {
    allFootPrint := [][]Point{{startPoint}}
    for i := 0; i < N; i++ {
        allNewFootPrint := make([][]Point, 0)
        for len(allFootPrint) > 0 {
            curFootPrint := allFootPrint[len(allFootPrint)-1]
            allFootPrint = allFootPrint[:len(allFootPrint)-1]
            last := curFootPrint[len(curFootPrint)-1]
            for _, d := range directions {
                nextPoint := Point{last.X + d[0], last.Y + d[1]}
                if !inArray(nextPoint, curFootPrint) {
                    // 必須復制一份數據出來,否則會發生路徑重復
                    newCurFootPrint := make([]Point, len(curFootPrint))
                    copy(newCurFootPrint, curFootPrint)

                    allNewFootPrint = append(allNewFootPrint, append(newCurFootPrint, nextPoint))
                }
            }
        }
        allFootPrint = allNewFootPrint
    }
    return allFootPrint
}

這處注釋的地方非常關鍵,如果不復制出來,會導至allNewFootPrint中出現連續的兩個相同路徑,并且不是所有的路徑都出問題,只會在一輪循環結束后,新一輪循環開始時才會出現,當時查了半天才查出問題。

現在把這個問題單獨拎出來,分享給大家。

package main

import "fmt"

func main() {
    a := []int{1,2,3,4,5,6}
    x := a[:2]
    x = append(x, 9)
    fmt.Println(x)
    fmt.Println(a)
}

輸出:

[1 2 9]
[1 2 9 4 5 6]

上面的操作很簡單,就是從a切片里取出前2個,然后再追加一個數字9進去。
結果我們發現x是正確的,但a切片也隨之發生了改動。
這說明x其實只是a切片的一個引用,對x的任何改動,都會影響到a。
這簡直是挖了個天大的坑,機器人的問題也正是這里的問題。
只能copy出一個新的slice方能解決這個問題

package main

import "fmt"

func main() {
    a := []int{1,2,3,4,5,6}

    c := make([]int, 2)
    copy(c, a[:2])

    c = append(c, 9)
    fmt.Println(c)
    fmt.Println(a)
}

輸出:

[1 2 9]
[1 2 3 4 5 6]
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

年辖:市辖区| 搜索| 开鲁县| 西畴县| 竹山县| 松桃| 通城县| 都昌县| 婺源县| 柳州市| 清徐县| 汉源县| 云龙县| 蓬溪县| 临桂县| 沙雅县| 胶州市| 枞阳县| 工布江达县| 连平县| 亳州市| 马尔康县| 巴彦县| 安化县| 民乐县| 舟曲县| 石家庄市| 大庆市| 巍山| 嵩明县| 尼玛县| 黄陵县| 泸溪县| 来安县| 惠水县| 防城港市| 禹州市| 黎城县| 荥经县| 界首市| 类乌齐县|