117.info
人生若只如初见

c++二分查找算法代码怎么写

下面是一个示例代码实现C++中的二分查找算法:

#include 
#include 

int binarySearch(std::vector<int>& arr, int target) {
    int left = 0;
    int right = arr.size() - 1;
    
    while (left <= right) {
        int mid = left + (right - left) / 2;
        
        if (arr[mid] == target) {
            return mid;
        } else if (arr[mid] < target) {
            left = mid + 1;
        } else {
            right = mid - 1;
        }
    }
    
    return -1;
}

int main() {
    std::vector arr = {1, 3, 5, 7, 9, 11, 13, 15};
    int target = 9;
    
    int result = binarySearch(arr, target);
    
    if (result != -1) {
        std::cout << "Element found at index: " << result << std::endl;
    } else {
        std::cout << "Element not found in the array" << std::endl;
    }
    
    return 0;
}

在这个示例代码中,binarySearch函数接受一个已排序的整数数组和一个目标值作为参数,然后使用二分查找算法在数组中查找目标值。如果找到目标值,则返回该值在数组中的索引,否则返回-1。在main函数中,我们创建了一个已排序的整数数组并调用binarySearch函数来查找目标值9。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe106AzsIBANRDFY.html

推荐文章

  • c++如何用指针输出二维数组

    要使用指针输出二维数组,可以通过以下步骤实现:
    1.定义一个二维数组并初始化:
    int arr[3][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; 2.使用指针遍历...

  • c++怎么输出指针地址

    要输出指针的地址,可以使用cout流和&运算符。下面是一个简单的示例:
    #include int main() { int num = 10; int* ptr = # std::cout

  • c++中setw报错的原因有哪些

    在C++中,setw是一个流控制器,用于设置输出的字段宽度。如果调用setw函数时出现错误,可能是以下几个原因导致的: 头文件未包含:如果未包含< iomanip >头文件,...

  • c++中setw报错怎么解决

    在C++中,setw是用于设置输出宽度的流控制器,但是它是在头文件中定义的。如果在使用setw时报错,可能是因为忘记包含头文件。
    解决方法:
    #include #i...

  • ubuntu中apache2如何关闭

    要在Ubuntu中关闭Apache2服务器,您可以使用以下命令: 首先,停止Apache2服务: sudo systemctl stop apache2 然后,禁用Apache2服务,以防止它在系统启动时自动...

  • ubuntu中apache2如何开启

    要在Ubuntu中开启Apache2服务,可以按照以下步骤操作: 打开终端,可以使用快捷键Ctrl+Alt+T来打开终端。 输入以下命令来启动Apache2服务: sudo systemctl star...

  • ubuntu中apache2局域网怎么配置

    在Ubuntu上配置Apache2以在局域网内提供服务需要做以下几个步骤: 安装Apache2: sudo apt update
    sudo apt install apache2 配置防火墙允许HTTP流量通过:...

  • ubuntu中apache2怎么设置自定义目录

    要在Ubuntu中设置Apache2的自定义目录,您需要编辑Apache2的配置文件并指定新的文档根目录。以下是在Ubuntu中设置自定义目录的步骤: 打开终端并使用以下命令编辑...