教你如何運用golang 實現陣列的隨機排序
導讀 | 本文主要介紹了golang 陣列隨機排序的實現,文中透過示例程式碼介紹的非常詳細,具有一定的參考價值,感興趣的小夥伴們可以參考一下 |
前言
目前接到一個推薦資料的需求,需要將資料庫中獲取到的資料進行隨機排序後返回給使用者。考慮了一下,有兩種使用方式,一種是透過資料庫 order by rand() ,還有一種就是本文需要使用到的程式碼處理
具體實現步驟如下
1.引入庫
程式碼如下:
import ( "fmt" "math/rand" "time" )
2.組裝資料並排序(方案一)
程式碼如下:
type CategoryEntity struct { GrouponId int64 //團ID MerchandiseId int64 //商品ID CategoryId int64 //分類ID CategoryTitle string //分類名稱 } func main() { data := make([]CategoryEntity, 10) data[0] = CategoryEntity{GrouponId: 0, MerchandiseId: 1117891, CategoryId: 726, CategoryTitle: "蔬菜"} data[1] = CategoryEntity{GrouponId: 1, MerchandiseId: 1110162, CategoryId: 1505, CategoryTitle: "調料調味"} data[2] = CategoryEntity{GrouponId: 2, MerchandiseId: 1117822, CategoryId: 746, CategoryTitle: "水果"} data[3] = CategoryEntity{GrouponId: 3, MerchandiseId: 1115770, CategoryId: 1408, CategoryTitle: "個人護理"} data[4] = CategoryEntity{GrouponId: 4, MerchandiseId: 1116528, CategoryId: 732, CategoryTitle: "肉"} data[5] = CategoryEntity{GrouponId: 5, MerchandiseId: 1116526, CategoryId: 727, CategoryTitle: "休閒食品"} data[6] = CategoryEntity{GrouponId: 6, MerchandiseId: 1117188, CategoryId: 728, CategoryTitle: "糧油調味"} data[7] = CategoryEntity{GrouponId: 7, MerchandiseId: 1117379, CategoryId: 726, CategoryTitle: "蔬菜"} data[8] = CategoryEntity{GrouponId: 8, MerchandiseId: 1118166, CategoryId: 1005, CategoryTitle: "居家百貨"} data[9] = CategoryEntity{GrouponId: 9, MerchandiseId: 1117377, CategoryId: 746, CategoryTitle: "水果"} fmt.Println("隨機前:", data) //如果不使用rand.Seed(seed int64),每次執行,得到的隨機數會一樣 rand.Seed(time.Now().Unix()) //採用rand.Shuffle,將切片隨機化處理後返回 rand.Shuffle(len(data), func(i, j int) { data[i], data[j] = data[j], data[i] }) fmt.Println("隨機後:", data) }
3.組裝資料並排序(方案二)
程式碼如下:
type CategoryEntity struct { GrouponId int64 //團ID MerchandiseId int64 //商品ID CategoryId int64 //分類ID CategoryTitle string //分類名稱 } func main() { data := make([]CategoryEntity, 10) data[0] = CategoryEntity{GrouponId: 0, MerchandiseId: 1117891, CategoryId: 726, CategoryTitle: "蔬菜"} data[1] = CategoryEntity{GrouponId: 1, MerchandiseId: 1110162, CategoryId: 1505, CategoryTitle: "調料調味"} data[2] = CategoryEntity{GrouponId: 2, MerchandiseId: 1117822, CategoryId: 746, CategoryTitle: "水果"} data[3] = CategoryEntity{GrouponId: 3, MerchandiseId: 1115770, CategoryId: 1408, CategoryTitle: "個人護理"} data[4] = CategoryEntity{GrouponId: 4, MerchandiseId: 1116528, CategoryId: 732, CategoryTitle: "肉"} data[5] = CategoryEntity{GrouponId: 5, MerchandiseId: 1116526, CategoryId: 727, CategoryTitle: "休閒食品"} data[6] = CategoryEntity{GrouponId: 6, MerchandiseId: 1117188, CategoryId: 728, CategoryTitle: "糧油調味"} data[7] = CategoryEntity{GrouponId: 7, MerchandiseId: 1117379, CategoryId: 726, CategoryTitle: "蔬菜"} data[8] = CategoryEntity{GrouponId: 8, MerchandiseId: 1118166, CategoryId: 1005, CategoryTitle: "居家百貨"} data[9] = CategoryEntity{GrouponId: 9, MerchandiseId: 1117377, CategoryId: 746, CategoryTitle: "水果"} fmt.Println("隨機前:", data) //如果不使用rand.Seed(seed int64),每次執行,得到的隨機數會一樣 rand.Seed(time.Now().Unix()) length := len(data) for i := 0; i < length; i++ { exchange(data, rand.Intn(length), i) } fmt.Println("隨機後:", data) } // 交換資料 func exchange(data []CategoryEntity, i, j int) { data[i], data[j] = data[j], data[i] }
總結
整體比較簡單,但是需要注意的有兩點:
1:golang中 rand的使用方式,如果不使用rand.Seed(seed int64),每次執行,得到的隨機數會一樣
2:方案一種採用rand.Shuffle+匿名函式,將切片隨機化處理後返回。
3:方案二使用golang特有的陣列交換方式:
func exchange(data []CategoryEntity, i, j int) { data[i], data[j] = data[j], data[i] }
到此這篇關於golang 陣列隨機排序的實現的文章就介紹到這了。
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2855479/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 教你如何運用golang實現陣列分割Golang陣列
- 實現陣列的隨機排序(含洗牌演算法)陣列隨機排序演算法
- 陣列排序的實現陣列排序
- 教你如何運用python/golang實現迴圈連結串列PythonGolang
- golang實現稀疏陣列Golang陣列
- JavaScript 陣列中元素隨機打亂排序JavaScript陣列隨機排序
- 運用JS 實現隨機點名 (隨機點名)JS隨機
- 隨機輸入3個字串,降序排列,用引用、字元陣列實現隨機字串字元陣列
- PHP 實現按奇偶排序陣列PHP排序陣列
- NumPy 陣列排序、過濾與隨機數生成詳解陣列排序隨機
- 如何從陣列中隨機取出幾個值組成新的陣列?陣列隨機
- Java陣列的運用Java陣列
- 用原生Js利用sort方法 實現圖片的正 倒排序和隨機排序JS排序隨機
- 隨機快速排序Java程式碼實現隨機排序Java
- 陣列的排序陣列排序
- 如何實現陣列去重?陣列
- 陣列排序陣列排序
- 計數排序 -- GoLang實現排序Golang
- JavaScript 陣列隨機不重複元素JavaScript陣列隨機
- 歸併排序:陣列和連結串列的多種實現排序陣列
- golang陣列分割Golang陣列
- 教你如何運用python實現學生資訊管理系統Python
- Golang實現氣泡排序法Golang排序
- 1117陣列排序的技巧陣列排序
- Golang刷LeetCode 26.刪除排序陣列中的重複項GolangLeetCode排序陣列
- 物件陣列排序物件陣列排序
- js陣列排序JS陣列排序
- JavaScript 陣列排序JavaScript陣列排序
- PostgreSQL隨機記錄返回-300倍提速實踐(隨機陣列下標代替orderbyrandom())SQL隨機陣列random
- PAT乙級——1092(陣列排序 自定義sort)Java實現陣列排序Java
- 【演算法-初級-陣列】刪除排序陣列中的重複項(多語言版實現)演算法陣列排序
- 教你如何運用python實現簡單檔案讀寫函式Python函式
- CSS中如何實現偽隨機?CSS隨機
- Golang 實現 RabbitMQ 的死信佇列GolangMQ佇列
- c語言中實現4行3列矩陣和3行4列矩陣的運算C語言矩陣
- 為什麼處理排序陣列比未排序陣列快排序陣列
- golang 陣列去重 移除陣列指定元素Golang陣列
- Javascript中的陣列物件排序JavaScript陣列物件排序