我是靠谱客的博主 雪白鸡,最近开发中收集的这篇文章主要介绍Go:二分查找,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package main

import "fmt"

func BinarySearch(arr *[5]int, leftIndex int, rightIndex int, findValue int) {

	// 判断leftIndex是否大于rightIndex
	if leftIndex > rightIndex {
		fmt.Println("找不到...")
		return
	}
	middleIndex := (leftIndex + rightIndex) / 2
	if (*arr)[middleIndex] > findValue {
		// 说明要找的数,在 leftIndex 至 middleIndex-1
		BinarySearch(arr, leftIndex, middleIndex-1, findValue)
	} else if (*arr)[middleIndex] < findValue {
		// 说明要找的数,在 middleIndex+1 至 rightIndex
		BinarySearch(arr, middleIndex+1, rightIndex, findValue)
	} else {
		// 找到了
		fmt.Printf("找到了,下标为%d", middleIndex)
	}
}

func main() {
	arr := [5]int{1, 5, 17, 22, 68}
	BinarySearch(&arr, 0, len(arr), 22)
}

  

转载于:https://www.cnblogs.com/believepd/p/10928417.html

最后

以上就是雪白鸡为你收集整理的Go:二分查找的全部内容,希望文章能够帮你解决Go:二分查找所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部