教你如何運用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陣列
- 實現陣列的隨機排序(含洗牌演算法)陣列隨機排序演算法
- JavaScript陣列隨機排序JavaScript陣列隨機排序
- 陣列排序的實現陣列排序
- python:numpy陣列運算、排序、統計、隨機數生成Python陣列排序隨機
- JS陣列隨機排序的三種方法JS陣列隨機排序
- 教你如何運用python/golang實現迴圈連結串列PythonGolang
- golang實現稀疏陣列Golang陣列
- JavaScript 陣列中元素隨機打亂排序JavaScript陣列隨機排序
- 運用JS 實現隨機點名 (隨機點名)JS隨機
- 隨機輸入3個字串,降序排列,用引用、字元陣列實現隨機字串字元陣列
- PHP 實現按奇偶排序陣列PHP排序陣列
- js實現從陣列中取出一個隨機項JS陣列隨機
- NumPy 陣列排序、過濾與隨機數生成詳解陣列排序隨機
- Awk 陣列排序多種實現方法陣列排序
- 如何從陣列中隨機取出幾個值組成新的陣列?陣列隨機
- Java陣列的運用Java陣列
- js實現的陣列自定義排序介紹JS陣列排序
- 用原生Js利用sort方法 實現圖片的正 倒排序和隨機排序JS排序隨機
- 隨機快速排序Java程式碼實現隨機排序Java
- [php]運用變數引用實現一維陣列轉多維樹狀陣列PHP變數陣列
- 陣列的排序陣列排序
- 如何實現陣列去重?陣列
- 計數排序 -- GoLang實現排序Golang
- JavaScript 陣列隨機不重複元素JavaScript陣列隨機
- 陣列排序陣列排序
- 用陣列實現大數加法陣列
- 如何遞迴實現陣列求和遞迴陣列
- 教你如何運用python實現學生資訊管理系統Python
- 隨機錯亂排序(sort的應用)隨機排序
- 歸併排序:陣列和連結串列的多種實現排序陣列
- golang陣列分割Golang陣列
- Golang實現氣泡排序法Golang排序
- 隨機排序隨機排序
- CSS中如何實現偽隨機?CSS隨機
- DELPHI也可以實現控制元件陣列,用定義陣列變數實現控制元件陣列 (轉)控制元件陣列變數
- 物件陣列排序物件陣列排序
- JavaScript 陣列排序JavaScript陣列排序