摘要: 593. 有效的正方形 class Solution { public: bool validSquare(vector<int>& p1, vector<int>& p2, vector<int>& p3, vector<int>& p4) { // 依次取得四条边的长度,注意如果任意三条边组合等 阅读全文
posted @ 2022-07-29 15:38 三一一一317 阅读(25) 评论(0) 推荐(0)
摘要: git学习 https://learngitbranching.js.org/?locale=zh_CN https://backlog.com/git-tutorial/tw/reference/ 阅读全文
posted @ 2022-07-19 20:30 三一一一317 阅读(26) 评论(0) 推荐(0)
摘要: 很多时候,我们在开发的时候是面对嵌入式平台,因此由于资源的限制需要用到相关的交叉编译。即在你host宿主机上要生成target目标机的程序。里面牵扯到相关头文件的切换和编译器的选择以及环境变量的改变等 CMake给交叉编译预留了一个很好的变量CMAKE_TOOLCHAIN_FILE,它定义了一个文件 阅读全文
posted @ 2022-07-15 11:00 三一一一317 阅读(530) 评论(0) 推荐(0)
摘要: 安装Graphviz brew install graphviz 安装Doxygen brew install doxygen 进入项目文件根目录 生成配置文件 doxygen -g Doxygen.config 修改配置文件 将配置文件中的下列配置进行修改,其他配置可以按照需求修改 EXTRACT 阅读全文
posted @ 2022-04-08 10:27 三一一一317 阅读(230) 评论(0) 推荐(0)
摘要: https://chejiahao.autohome.com.cn/info/1583131/ http://www.cheyun.com/content/10819 DRIVE PX 2 是一个开放式人工智能车辆计算平台,对于车厂和一级供应商来说,可以根据这个平台做快速的、自主定制化的自动驾驶车辆 阅读全文
posted @ 2022-04-04 15:58 三一一一317 阅读(79) 评论(0) 推荐(0)
摘要: 插入图片 https://www.cnblogs.com/cpsmile/p/6683003.html 阅读全文
posted @ 2022-03-23 22:42 三一一一317 阅读(14) 评论(0) 推荐(0)
摘要: http://yearing1017.cn/2020/05/30/labelme的安装及使用/ 阅读全文
posted @ 2022-03-06 22:34 三一一一317 阅读(252) 评论(0) 推荐(0)
摘要: https://repo.anaconda.com/archive/ 下载下面这个版本,对应python3.7 然后一路next Anaconda3-2019.07-MacOSX-x86_64.pkg 2、 安装完成之后打开终端,测试安装输入: conda --version 报错信息如下: com 阅读全文
posted @ 2022-02-27 21:03 三一一一317 阅读(408) 评论(0) 推荐(0)
摘要: /* 暴力法, */ /* class Solution { public: vector<int> smallerNumbersThanCurrent(vector<int>& nums) { vector<int> res(nums.size()); for(int i = 0; i < num 阅读全文
posted @ 2021-10-10 14:22 三一一一317 阅读(41) 评论(0) 推荐(0)
摘要: struct point{ int x; int y; }; class Solution { public: int orangesRotting(vector<vector<int>>& grid) { int freshfruit = 0; queue<point> q; for(int i 阅读全文
posted @ 2021-10-08 16:43 三一一一317 阅读(64) 评论(0) 推荐(0)