当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO IntsAreSorted用法及代码示例


GO语言"sort"包中"IntsAreSorted"函数的用法及代码示例。

用法:

func IntsAreSorted(x []int) bool

IntsAreSorted 报告切片 x 是否按升序排序。

例子:

package main

import (
	"fmt"
	"sort"
)

func main() {
	s := []int{1, 2, 3, 4, 5, 6} // sorted ascending
	fmt.Println(sort.IntsAreSorted(s))

	s = []int{6, 5, 4, 3, 2, 1} // sorted descending
	fmt.Println(sort.IntsAreSorted(s))

	s = []int{3, 2, 4, 1, 5} // unsorted
	fmt.Println(sort.IntsAreSorted(s))

}

输出:

true
false
false

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 IntsAreSorted。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。