当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


VB.NET Array BinarySearch()用法及代码示例


BinarySearch() 方法用于从排序数组中搜索指定项。

用法:

Function BinarySearch(ByVal arr() as object, ByVal num as object) as Integer

参数:

  • Arr:它是指定的排序数组。
  • Num:要搜索的指定号码。

返回值:它返回搜索项的索引。如果该项目在指定的数组中没有找到,那么它将返回一个负值。

程序/源代码:

下面给出了演示 Array 类的 BinarySearch() 方法的源代码。给定的程序已成功编译并执行。

'VB.NET program to demonstrate the BinarySearch() 
'method of Array class.

Imports System

Module Module1
    Sub Main()
        Dim index As Integer
        Dim arr() As Integer = {10, 20, 30, 40, 50}

        index = Array.BinarySearch(arr, 30)

        If (index < 0) Then
            Console.WriteLine("Item not found")
        Else
            Console.WriteLine("Item {0} find at index:{1}", 30, index)
        End If
    End Sub
End Module

输出:

Item 30 find at index:2
Press any key to continue . . .

说明:

在上面的程序中,我们创建了一个包含 Main() 函数的模块 Module1。 Main() 函数是程序的入口点。

在 Main() 函数中,我们创建了一个包含 5 个元素的数组 arr。然后我们使用Array类的BinarySearch()方法搜索第30项并返回索引。之后,我们在控制台屏幕上打印指定项目的索引。



相关用法


注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the BinarySearch() method of Array class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。