本文实例讲述了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语言程序设计有所帮助。

声明:本站(华域联盟www.cnhackhy.com)所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。