上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 54 下一页

2021年2月4日

摘要: 前言 计算TTC的有两种模式,一种是考虑加速度的,一种是不考虑加速度的。 计算公式 参考 1. AEB安全模型(一)——基于碰撞时间的安全模型; 2. 聊聊碰撞时间TTC; 完 阅读全文
posted @ 2021-02-04 18:25 鹅要长大 阅读(2249) 评论(0) 推荐(0)

2020年12月29日

摘要: 问题: 功能代码中部分代码中有显示,comment则可正常运行,否则运行不到一个小时就会崩溃,不知道是什么原因。系统代码其他部分也有显示,没有问题。 新版本会出现这个问题,老版本中没有出现这个问题,很奇怪。。。 code: extract_pts_dis(dst, measure_results); 阅读全文
posted @ 2020-12-29 17:00 鹅要长大 阅读(545) 评论(0) 推荐(0)

2020年12月22日

摘要: problem 1556. Thousand Separator solution#1: 使用to_string和迭代; code solution#2: 从前往后添加; code solution#3: 使用Insert; code 参考 1. leetcode_easy_string_1556. 阅读全文
posted @ 2020-12-22 21:05 鹅要长大 阅读(86) 评论(0) 推荐(0)
摘要: problem 1576. Replace All ?'s to Avoid Consecutive Repeating Characters solution#1: code: 注意,如何取得满足题意的替换字符;注意字符串边界; 参考 1. leetcode_easy_string_1576. R 阅读全文
posted @ 2020-12-22 21:00 鹅要长大 阅读(84) 评论(0) 推荐(0)

2020年12月21日

摘要: 问题 ~/snpe-1.43.0.2307/demo/alexnet$ wget -c https://raw.githubusercontent.com/BVLC/caffe/master/models/bvlc_alexnet/deploy.prototxt --2020-12-21 10:45 阅读全文
posted @ 2020-12-21 22:31 鹅要长大 阅读(2175) 评论(0) 推荐(0)
摘要: problem 在使用pip3 install matplotlib==3.0.3时遇到如下问题 Collecting matplotlib==3.0.3 Downloading matplotlib-3.0.3.tar.gz (36.6 MB) |█████████████████████████ 阅读全文
posted @ 2020-12-21 20:59 鹅要长大 阅读(362) 评论(0) 推荐(0)

2020年12月20日

摘要: problem 1455. Check If a Word Occurs As a Prefix of Any Word in a Sentence solution#1: 使用string的特性和count函数; code solution#2: 通过空格split得到字符,然后判断; code 阅读全文
posted @ 2020-12-20 17:08 鹅要长大 阅读(115) 评论(0) 推荐(0)
摘要: problem 1624. Largest Substring Between Two Equal Characters solution#1: code 参考 1. leetcode_easy_string_1624. Largest Substring Between Two Equal Cha 阅读全文
posted @ 2020-12-20 17:05 鹅要长大 阅读(81) 评论(0) 推荐(0)
摘要: problem 1544. Make The String Great solution#1: code 参考 1. leetcode_easy_string_1544. Make The String Great; 完 阅读全文
posted @ 2020-12-20 17:04 鹅要长大 阅读(82) 评论(0) 推荐(0)
摘要: problem 1496. Path Crossing solution#1: 使用set和pair; code 注意,set和pair的使用; 参考 1. leetcode_easy_string_1496. Path Crossing; 2. set的使用; 3. pair的使用; 完 阅读全文
posted @ 2020-12-20 17:04 鹅要长大 阅读(76) 评论(0) 推荐(0)
摘要: problem 1408. String Matching in an Array solution#1: 使用set类型; code solution#2: 使用字符串; code 注意查找的关键; solution#3: 先排序后查找; code 参考 1. leetcode_easy_stri 阅读全文
posted @ 2020-12-20 17:03 鹅要长大 阅读(73) 评论(0) 推荐(0)
摘要: problem 1544. Make The String Great solution#1:Brute-Force; code 注意1,如何判断两个字符是同一个字母的大小写呢?! 注意2,for循环的限制条件; 注意3,while循环的条件,或者外层循环结束的条件; solution#2: two 阅读全文
posted @ 2020-12-20 17:03 鹅要长大 阅读(96) 评论(0) 推荐(0)
摘要: 参考 1. 常用聚类算法; 完 阅读全文
posted @ 2020-12-20 17:01 鹅要长大 阅读(153) 评论(0) 推荐(0)
摘要: problem Preparing wheel metadata ... error ERROR: Command errored out with exit status 1: command: /usr/bin/python3 /home/nvidia/.local/lib/python3.5/ 阅读全文
posted @ 2020-12-20 14:22 鹅要长大 阅读(765) 评论(0) 推荐(0)

2020年12月3日

摘要: problem 1592. Rearrange Spaces Between Words solution#1: code 注意,如何分离单词; 参考 1. leetcode_easy_string_1592. Rearrange Spaces Between Words; 完 阅读全文
posted @ 2020-12-03 13:01 鹅要长大 阅读(101) 评论(0) 推荐(0)
摘要: 前言 前段时间被小伙伴种草了资源管理工具Clover(四叶草),使用了一段时间,发现总是出现各种新闻推荐广告什么的,甚是辣眼睛,总想着如何关闭广告设置,故记录本文。 操作方法 方法1. 直接在设置中关闭; 其实,首先想到的就是更改设置,奈何宝宝之前怎么也没在见面上发现设置这个工具栏,可能是宝宝的眼睛 阅读全文
posted @ 2020-12-03 12:58 鹅要长大 阅读(5378) 评论(0) 推荐(0)

2020年12月2日

摘要: problem 1598. Crawler Log Folder solution#1: 使用stack; code solution#2: code 参考 1. leetcode_easy_stack_1598. Crawler Log Folder; 完 阅读全文
posted @ 2020-12-02 07:52 鹅要长大 阅读(91) 评论(0) 推荐(0)
摘要: problem 1441. Build an Array With Stack Operations 题意: 这道题目重在理解题目意思; 有一个递增数组target,其中的元素是[1, n]之间的整数, 对于[1, n]之间且不大于target最大值的所有整数, 若target中不存在该数值,则先a 阅读全文
posted @ 2020-12-02 07:49 鹅要长大 阅读(49) 评论(0) 推荐(0)
摘要: problem 1047. Remove All Adjacent Duplicates In String solution#1: 使用stack; code: solution#2: 快慢指针; code solution#3: 数据类型string的特性; code 参考 1. leetcod 阅读全文
posted @ 2020-12-02 07:48 鹅要长大 阅读(48) 评论(0) 推荐(0)
摘要: problem 1021. Remove Outermost Parentheses solution#1: stack; code solution#2: code 参考 1. leetcode_easy_stack_1021. Remove Outermost Parentheses; 2. 【 阅读全文
posted @ 2020-12-02 07:47 鹅要长大 阅读(61) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 54 下一页

导航