【opencv C++版本】安装和学习 ==Windows下使用VSCode配置OpenCV开发环境

ref:https://opencv.org/releases/

ref:https://www.cnblogs.com/ticlab/p/16817542.html

c_cpp_properties.json

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**",
                "C:/Users/HP/OpenCV-MinGW-Build/x64/mingw/bin"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "10.0.19041.0",
            "compilerPath": "cl.exe",
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "windows-msvc-x64",
            "configurationProvider": "ms-vscode.makefile-tools"
        }
    ],
    "version": 4
}

照着ref 没安装成功,先写个二分查找把

C++ 复制代码
int search(int a[], int start, int end, int target){
    int mid = (start + end) /2;
    if (target < a[start] || target > a[end] || start >end) {
        return -1;
    }
    if (a[mid] == target){
        return mid;
    } else if (a[mid] >target)
    {
        return search(a, start, mid-1, target);
    } else if (a[mid] < target){
        return search(a, mid+1, end, target);
    }
int main(){
int arr[10] = { 1, 2, 3, 4, 5, 6, 9, 12, 25, 38};
    int key = -1;

    int size = sizeof(arr)/sizeof(arr[0]);
    int result = search(arr, 0, size-1, key);
    result == -1 ? std::cout <<  "在数组中没有找到" << key << "!" << std::endl :  std::cout <<  "在数组中找到" << key << " " << "下标为" << result << std::endl;
    return 0; 
}
    
相关推荐
霁月风12 分钟前
设计模式——适配器模式
c++·适配器模式
jrrz082834 分钟前
LeetCode 热题100(七)【链表】(1)
数据结构·c++·算法·leetcode·链表
咖啡里的茶i1 小时前
Vehicle友元Date多态Sedan和Truck
c++
海绵波波1071 小时前
Webserver(4.9)本地套接字的通信
c++
@小博的博客1 小时前
C++初阶学习第十弹——深入讲解vector的迭代器失效
数据结构·c++·学习
南宫生2 小时前
贪心算法习题其四【力扣】【算法学习day.21】
学习·算法·leetcode·链表·贪心算法
爱吃喵的鲤鱼2 小时前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++
懒惰才能让科技进步2 小时前
从零学习大模型(十二)-----基于梯度的重要性剪枝(Gradient-based Pruning)
人工智能·深度学习·学习·算法·chatgpt·transformer·剪枝
7年老菜鸡2 小时前
策略模式(C++)三分钟读懂
c++·qt·策略模式
Ni-Guvara3 小时前
函数对象笔记
c++·算法