dsaj20411 2015-02-05 13:06
浏览 56
已采纳

golang:sort.Search在切片中找不到第一个元素

I have write some code to find element position in sorted slice use sort.Search, but it can't correctly get the right position of first element.

package main

import (
    "fmt"
    "sort"
)

func main() {
    data := []int{1, 2, 3}
    fmt.Println(sort.Search(len(data), func(i int) bool {
        return data[i] < 2 // or data[i] == 1
    }))
}

The standard output is always 3 rather than 0. Is it a bug? Or am i wrong?

Thanks.

  • 写回答

1条回答 默认 最新

  • douniao7308 2015-02-05 13:17
    关注

    If you want to search for the first element, then in your comparator function you should compare the ith element to the first which is data[0] (or the value which is 1).

    And since your slice is sorted in ascending order, you have to use the >= operator for comparision because sort.Search() returns the smallest index i in [0, n) at which f(i) is true.

    data := []int{1, 2, 3}
    fmt.Println(sort.Search(len(data), func(i int) bool {
        return data[i] >= data[0] // You could also use 1 instead of data[0]
    }))
    

    Output: 0 as expected. Try it on Go Playground.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料