GO语言"sort"包中"Float64sAreSorted"函数的用法及代码示例。
用法:
func Float64sAreSorted(x []float64) bool
Float64sAreSorted 报告切片 x 是否按升序排序,not-a-number (NaN) 值在任何其他值之前。
例子:
package main
import (
"fmt"
"sort"
)
func main() {
s := []float64{0.7, 1.3, 2.6, 3.8, 5.2} // sorted ascending
fmt.Println(sort.Float64sAreSorted(s))
s = []float64{5.2, 3.8, 2.6, 1.3, 0.7} // sorted descending
fmt.Println(sort.Float64sAreSorted(s))
s = []float64{5.2, 1.3, 0.7, 3.8, 2.6} // unsorted
fmt.Println(sort.Float64sAreSorted(s))
}
输出:
true false false
相关用法
- GO Float64s用法及代码示例
- GO Float.SetString用法及代码示例
- GO Float.Scan用法及代码示例
- GO Float.Add用法及代码示例
- GO Float.Cmp用法及代码示例
- GO Float用法及代码示例
- GO Floor用法及代码示例
- GO Fscanln用法及代码示例
- GO FileServer用法及代码示例
- GO FieldsFunc用法及代码示例
- GO Fprintln用法及代码示例
- GO FormatMediaType用法及代码示例
- GO Fprintf用法及代码示例
- GO Fprint用法及代码示例
- GO FormatUint用法及代码示例
- GO FormatBool用法及代码示例
- GO FormatFloat用法及代码示例
- GO FileMode用法及代码示例
- GO FullRune用法及代码示例
- GO FullRuneInString用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Float64sAreSorted。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。