Hello World程序實例
Go變量實例
Go常量實例
Go for循環語句實例
Go if/else語句實例
Go switch語句實例
Go切片實例
Go範圍實例
Go函數實例
Go函數多個返回值實例
Go可變參數的函數實例
Go閉包(匿名函數)實例
Go函數遞歸實例
Go指針實例
Go指針實例
Go接口實例
Go錯誤實例
Go程序實例
Go通道實例
Go通道緩衝實例
Go通道同步實例
Go通道路線實例
Go Select實例
Go超時(timeouts)實例
Go非阻塞通道操作實例
Go關閉通道實例
Go通道範圍實例
Go計時器實例
Go斷續器實例
Go工作池實例
Go速率限制實例
Go原子計數器實例
Go互斥體實例
Go有狀態的goroutines實例
Go排序實例
Go按自定義函數排序實例
Go panic錯誤處理實例
Go延遲(defer)實例
Go集合函數實例
Go字符串函數實例
Go字符串格式化實例
Go正則表達式實例
Go JSON實例
Go時間日期實例
Go時代(Epoch)實例
Go時間格式化/解析實例
Go隨機數實例
Go數字解析實例
Go URL解析實例
Go SHA1哈希實例
Go Base64編碼實例
Go讀取文件實例
Go寫文件實例
Go行過濾器實例
Go命令行參數實例
Go命令行標誌實例
Go環境變量實例
Go執行過程實例
Go信號實例
Go退出程序實例
Go按自定義函數排序實例
有時候,我們希望通過除了自然順序以外的其他方式對集合進行排序。例如,假設我們想按字符串的長度而不是字母順序對字符串進行排序。下面是Go語言中自定義排序的示例。
爲了使用Go語言中的自定義函數進行排序,我們需要一個相應的類型。這裏創建了一個ByLength
類型,它只是內置 []string
類型的別名。
需要實現sort.Interface - Len
,Less
和Swap -
在這個類型上,所以可以使用 sort
包中的一般Sort
函數。Len
和Swap
通常在類型之間是相似的,Less
保存實際的自定義排序邏輯。在這個例子中,要按照字符串長度的增加順序排序,因此在這裏使用len(s [i])
和len(s [j])
。
所有這些都到位後,現在可以通過將原始 fruits
切片轉換爲ByLength
來實現自定義排序,然後對該類型切片使用sort.Sort()
方法。
運行程序根據需要顯示按字符串長度排序的列表。
通過遵循創建自定義類型的模式,在該類型上實現三個Interface
方法,然後在自定義類型的集合上調用sort.Sort
,可以通過任意函數對Go切片進行排序。
所有的示例代碼,都放在
F:\worksp\golang
目錄下。安裝Go編程環境請參考:http://www.yiibai.com/go/go\_environment.html
sorting-by-functions.go
的完整代碼如下所示 -
package main
import "sort"
import "fmt"
// In order to sort by a custom function in Go, we need a
// corresponding type. Here we've created a `ByLength`
// type that is just an alias for the builtin `[]string`
// type.
type ByLength []string
// We implement `sort.Interface` - `Len`, `Less`, and
// `Swap` - on our type so we can use the `sort` package's
// generic `Sort` function. `Len` and `Swap`
// will usually be similar across types and `Less` will
// hold the actual custom sorting logic. In our case we
// want to sort in order of increasing string length, so
// we use `len(s[i])` and `len(s[j])` here.
func (s ByLength) Len() int {
return len(s)
}
func (s ByLength) Swap(i, j int) {
s[i], s[j] = s[j], s[i]
}
func (s ByLength) Less(i, j int) bool {
return len(s[i]) < len(s[j])
}
// With all of this in place, we can now implement our
// custom sort by casting the original `fruits` slice to
// `ByLength`, and then use `sort.Sort` on that typed
// slice.
func main() {
fruits := []string{"peach", "banana", "kiwi"}
sort.Sort(ByLength(fruits))
fmt.Println(fruits)
}
執行上面代碼,將得到以下輸出結果 -
F:\worksp\golang>go run sorting-by-functions.go
[kiwi peach banana]