- 博客(5)
- 收藏
- 关注
转载 转载 报错:fatal error:ros/ros.h:没有这样的文件或目录
fatal error: ros/ros.h: No such file or directory修改CMakeLists.txt:将 include_directories(include ${PCL_INCLUDE_DIRS})改为 include_directories(include ${catkin_INCLUDE_DIRS} ${PCL_INCLUDE_DIRS})...
2019-05-15 15:58:36
13914
2
原创 旋转数组的最小数字 牛客网剑指offer
class Solution {public:int minNumberInRotateArray(vector rotateArray) {if (rotateArray.size() == 0)throw “the vector is empty”;int head = 0;int tail = rotateArray.size() - 1;int Mid = head;whi...
2019-05-15 14:30:53
135
原创 剑指offer 面试题8 二叉树的下一个节点 牛客网
/*struct TreeLinkNode {int val;struct TreeLinkNode *left;struct TreeLinkNode *right;struct TreeLinkNode *next;TreeLinkNode(int x) :val(x), left(NULL), right(NULL), next(NULL) {}};/class Sol...
2019-05-13 10:26:13
172
原创 剑指offer 二叉树重建 C++ 牛客网
剑指offer 二叉树重建 C++ 牛客网/**Definition for binary treestruct TreeNode {int val;TreeNode *left;TreeNode *right;TreeNode(int x) : val(x), left(NULL), right(NULL) {}};/class Solu...
2019-05-07 22:13:10
213
转载 Ubuntu 16.04 安装opencv3.4.1 环境配置记录
Ubuntu 16.04 安装opencv3.4.1 环境配置记录参考:https://blog.youkuaiyun.com/cocoaqin/article/details/78163171
2019-04-02 11:09:53
184
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人