会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
三一一一317
博客园
首页
新随笔
联系
订阅
管理
2022年7月29日
leetcode-593. 有效的正方形
摘要: 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)
2022年7月19日
杂记
摘要: 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)
2022年7月15日
cmake
摘要: 很多时候,我们在开发的时候是面对嵌入式平台,因此由于资源的限制需要用到相关的交叉编译。即在你host宿主机上要生成target目标机的程序。里面牵扯到相关头文件的切换和编译器的选择以及环境变量的改变等 CMake给交叉编译预留了一个很好的变量CMAKE_TOOLCHAIN_FILE,它定义了一个文件
阅读全文
posted @ 2022-07-15 11:00 三一一一317
阅读(530)
评论(0)
推荐(0)
2022年4月8日
C++项目如何输出类图
摘要: 安装Graphviz brew install graphviz 安装Doxygen brew install doxygen 进入项目文件根目录 生成配置文件 doxygen -g Doxygen.config 修改配置文件 将配置文件中的下列配置进行修改,其他配置可以按照需求修改 EXTRACT
阅读全文
posted @ 2022-04-08 10:27 三一一一317
阅读(230)
评论(0)
推荐(0)
2022年4月4日
Drive PX2
摘要: 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)
2022年3月23日
LaTeX写作
摘要: 插入图片 https://www.cnblogs.com/cpsmile/p/6683003.html
阅读全文
posted @ 2022-03-23 22:42 三一一一317
阅读(14)
评论(0)
推荐(0)
2022年3月6日
mac安装labelme
摘要: http://yearing1017.cn/2020/05/30/labelme的安装及使用/
阅读全文
posted @ 2022-03-06 22:34 三一一一317
阅读(252)
评论(0)
推荐(0)
2022年2月27日
mac安装anaconda
摘要: 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)
2021年10月10日
leetcode-华为专题-1365. 有多少小于当前数字的数字
摘要: /* 暴力法, */ /* 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)
2021年10月8日
leetcode-华为专题-994. 腐烂的橘子
摘要: 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)
下一页
公告