- 博客(2)
- 收藏
- 关注
原创 OpenCV3.1 findContours函数在vs15的Release下报错,在Debug下正常
#include "opencv2/imgproc/imgproc_c.h"#include <opencv2/opencv.hpp> //头文件#include <iostream>#include <vector>#include "cv.h" #include "highgui.h" #define NUM 64000using n..
2018-12-25 16:04:47
360
原创 求二叉树中任意两个结点间的路径(C++)
方法一#include <iostream>#include <vector>using namespace std;struct Node{ int val; Node* left; Node* right; Node(int v) { val = v; left = nullptr; right = nullptr; }};vo...
2018-09-25 16:28:50
4656
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人