• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
MKT-porter
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 4 5 6 7 8 ··· 80 下一页
2025年9月28日
reLeetCode 热题 100- 42 接雨水
摘要: class Solution { public: /* 关键 左边界 height[zuo]>height[zuo+1] 右边界 1 是否比height[you]》height[zuo] break; 2 不是最后一个 height[you]>height[you-1] && height[you] 阅读全文
posted @ 2025-09-28 17:30 MKT-porter 阅读(8) 评论(0) 推荐(0)
2025年9月27日
GNSS精度判断和协方差矩阵
摘要: havv和vacc不是GST标准差, https://blog.csdn.net/qq_38429958/article/details/135639678 https://uav.chinaflier.com/thread-25814-1-1.html 飞控需要GPS哪些信息(即需要设置哪些参数) 阅读全文
posted @ 2025-09-27 20:07 MKT-porter 阅读(33) 评论(0) 推荐(0)
2025年9月26日
新方向
摘要: 1 国防科技大学 语义 2 美团 毛一年 机器人研究院 120m 200-300米 无人机基本参数 老版本 新版本 2.4kg (1)视觉卫星图定位 (2)动态重新规划路径 (3)夜间场景 多视角相机的夜间视觉导航 下视觉 3 动态物体剔除 cvpr 4 gs加速 https://blog.csdn 阅读全文
posted @ 2025-09-26 15:11 MKT-porter 阅读(10) 评论(0) 推荐(0)
2025年9月25日
3D 高斯训练速度和消耗
摘要: NUC系列 jetson 系列 SEELE: A Unified Acceleration Framework for Real-Time Gaussian Splatting https://arxiv.org/pdf/2503.05168 https://openaccess.thecvf.co 阅读全文
posted @ 2025-09-25 22:26 MKT-porter 阅读(25) 评论(0) 推荐(0)
2025年9月23日
RTK精度和时间
摘要: https://www.u-blox.com/zh/blogs/tech/network-rtk-vs-ppp-rtk https://help.qxwz.com/400015 30、使用千寻高精度定位服务的流量消耗如何? FindCM在RTCM32格式是:0.7KB/s左右;FindM Pro在R 阅读全文
posted @ 2025-09-23 16:55 MKT-porter 阅读(8) 评论(0) 推荐(0)
2025年9月20日
reLeetCode 热题 100- 15. 三数之和
摘要: 1 排序 2 双指针 位置卡死逐步对着移动 左右2个指针 3 while 跳过重复的数 双指针 class Solution { public: vector<vector<int>> my_test1(vector<int>& nums) { std::set<int> index_set; st 阅读全文
posted @ 2025-09-20 02:01 MKT-porter 阅读(3) 评论(0) 推荐(0)
2025年9月17日
reLeetCode 热题 100-11 盛最多的谁
摘要: 1 bu 不合格答案 暴力 // 时间超时 int my_1(vector<int>& height){ // x * hign_min int max_=0; for(int i=0; i<height.size()-1;i++){ for(int j=i+1; j<height.size();j 阅读全文
posted @ 2025-09-17 13:25 MKT-porter 阅读(5) 评论(0) 推荐(0)
2025年9月15日
reLeetCode 热题 100-1 指针283. 移动零
摘要: class Solution { public: void moveZeroes(vector<int>& nums) { // int cout_=0; // for(int i =0; i<nums.size();i++){ // if(nums[i]==0){ // cout_++; // } 阅读全文
posted @ 2025-09-15 18:46 MKT-porter 阅读(5) 评论(0) 推荐(0)
reLeetCode 热题 100-1 两数之和-扩展3 单向和双向链表实现
摘要: 1 阅读全文
posted @ 2025-09-15 12:33 MKT-porter 阅读(4) 评论(0) 推荐(0)
reLeetCode 热题 100-1 两数之和-扩展2 map实现
摘要: 1使用例子 #include <iostream> #include <map> #include <string> int main() { // 创建一个从string到int的map std::map<std::string, int> ageMap; // 插入元素 ageMap["Alic 阅读全文
posted @ 2025-09-15 12:33 MKT-porter 阅读(3) 评论(0) 推荐(0)
2025年9月12日
reLeetCode 热题 100-3 最长连续序列扩展 排序算法
摘要: 1 左右值概念 2 结构体定义 3 const作用 给一个这样的例子 ​​const成员函数​​:保证不会修改对象的状态,可以在 const对象上调用。 4排序算法 选择排序 #include <iostream> #include <vector> void selectionSort(std:: 阅读全文
posted @ 2025-09-12 12:05 MKT-porter 阅读(5) 评论(0) 推荐(0)
2025年9月11日
reLeetCode 热题 100-3 最长连续序列
摘要: 1 不需要排序算法。使用表插入代替了排序,无序,只需要检查是否存在数据。 自己方法1 不合格 排序算法 快速排序 时间O(n2) class Solution { public: int longestConsecutive(vector<int>& nums) { if (nums.empty() 阅读全文
posted @ 2025-09-11 20:58 MKT-porter 阅读(4) 评论(0) 推荐(0)
2025年9月10日
reLeetCode 热题 100-2 字母异位词分组 扩展
摘要: 1 字符排序 #include <iostream> #include <algorithm> // for std::sort #include <string> int main() { std::string str = "programming"; // 对字符串中的字符进行排序 std:: 阅读全文
posted @ 2025-09-10 23:54 MKT-porter 阅读(2) 评论(0) 推荐(0)
reLeetCode 热题 100-2 字母异位词分组
摘要: 自己的答案 class Solution { public: std::map<char,int> GetStringMap(string msg_){ std::map<char,int> charMap; for(char c : msg_) { charMap[c]++; } // std:: 阅读全文
posted @ 2025-09-10 23:52 MKT-porter 阅读(1) 评论(0) 推荐(0)
2025年9月9日
reLeetCode 热题 100-1 两数之和-扩展1 unordered_map实现
摘要: 1 C++ unordered_map 实现 unordered_map是 C++ STL 中的关联容器,它存储键值对,使用哈希表实现,提供平均 O(1) 时间复杂度的查找、插入和删除操作。 1基本用法 #include <iostream> #include <unordered_map> #in 阅读全文
posted @ 2025-09-09 17:07 MKT-porter 阅读(4) 评论(0) 推荐(0)
reLeetCode 热题 100-1 两数之和-哈希表
摘要: 1暴力拆解 扩展 2.1 unordered_map #include <iostream> #include <unordered_map> #include <string> int main() { // 创建 unordered_map std::unordered_map<std::str 阅读全文
posted @ 2025-09-09 17:03 MKT-porter 阅读(6) 评论(0) 推荐(0)
2025年9月5日
SceneScript 允许 AR 和 AI 设备理解物理空间的几何形状
摘要: 阅读全文
posted @ 2025-09-05 11:22 MKT-porter 阅读(4) 评论(0) 推荐(0)
2025年8月21日
小智代码解析
摘要: 10:58:17.664 -> 连接中... 10:58:18.273 -> OnWebSocketConnected 10:58:18.314 -> 客户端发送 hello:连接成功建立后,客户端需要发送一个 hello 消息(JSON 格式) {"type":"hello","version": 阅读全文
posted @ 2025-08-21 11:01 MKT-porter 阅读(34) 评论(0) 推荐(0)
2025年8月18日
arduino开发你好小智(2-2)外设定时提醒任务
摘要: 、 arduino单独代码 #include <WiFi.h> #include <WiFiUdp.h> #include <NTPClient.h> #include <TimeLib.h> #include <TaskScheduler.h> // WiFi配置 const char* ssid 阅读全文
posted @ 2025-08-18 22:32 MKT-porter 阅读(26) 评论(0) 推荐(0)
2025年8月12日
arduino开发你好小智(3)全流程和通信协议,Iot原理
摘要: JSON-RPC 2.0 格式 MCP 协议物联网控制用法说明 https://github.com/78/xiaozhi-esp32/blob/main/docs/mcp-usage.md 【AI大模型应用开发】2.1 Function Calling连接外部世界 - 入门与实战(1) 附篇:虾哥 阅读全文
posted @ 2025-08-12 19:02 MKT-porter 阅读(315) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 80 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3