在 Go 中對多維數組進行排序可以透過手動定義排序方式來實現。可以採取兩種方法:
1。實作 sort.Sort 介面:
為 Len、Less 和 Swap 建立自訂方法以與 sort.Sort 一起使用,使您能夠在排序期間修改陣列值。例如:
type Matrix [3][3]int func (m Matrix) Len() int { return len(m) } func (m Matrix) Less(i, j int) bool { for x := range m[i] { if m[i][x] == m[j][x] { continue } return m[i][x] < m[j][x] } return false } func (m *Matrix) Swap(i, j int) { m[i], m[j] = m[j], m[i] } func main() { m := Matrix(matrix) sort.Sort(&m) }
2。使用 sort.Slice 函數:
將陣列轉換為切片,並為 sort.Slice 提供類似的函數來處理排序。例如:
sort.Slice(matrix[:], func(i, j int) bool { for x := range matrix[i] { if matrix[i][x] == matrix[j][x] { continue } return matrix[i][x] < matrix[j][x] } return false }) fmt.Println(matrix)
這兩種方法都允許您在 Go 中自訂二維數組的排序行為。
以上是如何在 Go 中對二維數組進行排序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!