golang binarySearch

rojas · · 2599 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

 1 func binarySearch(nodes []*node, word Text) (int, bool) {
 2     start := 0
 3     end := len(nodes) - 1
 4  
 5     // 特例:
 6     if len(nodes) == 0 {
 7         // 当slice为空时,插入第一位置
 8         return 0, false
 9     }
10     compareWithFirstWord := bytes.Compare(word, nodes[0].word)
11     if compareWithFirstWord < 0 {
12         // 当要查找的元素小于首元素时,插入第一位置
13         return 0, false
14     } else if compareWithFirstWord == 0 {
15         // 当首元素等于node时
16         return 0, true
17     }
18     compareWithLastWord := bytes.Compare(word, nodes[end].word)
19     if compareWithLastWord == 0 {
20         // 当尾元素等于node时
21         return end, true
22     } else if compareWithLastWord > 0 {
23         // 当尾元素小于node时
24         return end + 1, false
25     }
26  
27     // 二分
28     current := end / 2
29     for end-start > 1 {
30         compareWithCurrentWord := bytes.Compare(word, nodes[current].word)
31         if compareWithCurrentWord == 0 {
32             return current, true
33         } else if compareWithCurrentWord < 0 {
34             end = current
35             current = (start + current) / 2
36         } else {
37             start = current
38             current = (current + end) / 2
39         }
40     }
41     return end, false
42 }

 


有疑问加站长微信联系(非本文作者)

本文来自:博客园

感谢作者:rojas

查看原文:golang binarySearch

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2599 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传