• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Go语言排序与接口实例分析

    本文实例讲述了Go语言排序与接口用法。分享给大家供大家参考。具体如下:

    复制代码 代码如下:
    import "fmt"
    type Sorter interface {
      Len() int
      Less(i, j int) bool
      Swap(i, j int)
    }
    type Xi []int
    type Xs []string
    func (p Xi) Len() int { return len(p) }
    func (p Xi) Less(i int, j int) bool { return p[j] p[i] }
    func (p Xi) Swap(i int, j int) { p[i], p[j] = p[j], p[i] }
    func (p Xs) Len() int { return len(p) }
    func (p Xs) Less(i int, j int) bool { return p[j] p[i] }
    func (p Xs) Swap(i int, j int) { p[i], p[j] = p[j], p[i] }
    func Sort(x Sorter) {
      for i := 0; i x.Len() - 1; i++ {
        for j := i + 1; j x.Len(); j++ {
          if x.Less(i, j) {
            x.Swap(i, j)
          }
        }
      }
    }
    func main() {
      ints := Xi{44, 67, 3, 17, 89, 10, 73, 9, 14, 8}
      strings := Xs{"nut", "ape", "elephant", "zoo", "go"}
      Sort(ints)
      fmt.Printf("%v\n", ints)
      Sort(strings)
      fmt.Printf("%v\n", strings)
    }

    希望本文所述对大家的Go语言程序设计有所帮助。

    您可能感兴趣的文章:
    • go语言实现接口查询
    • Go语言接口定义与用法示例
    • go语言接口用法实例分析
    • Go语言接口用法实例
    • 一篇文章带你玩转go语言的接口
    上一篇:Go语言清除文件中空行的方法
    下一篇:Go语言写入字符串到文件的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Go语言排序与接口实例分析 语言,排序,与,接口,实例分析,