首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
康萌北鼻
蔚来汽车_测开
获赞
5
粉丝
18
关注
1
看过 TA
62
男
中国计量大学
2020
算法工程师
IP属地:上海
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑康萌北鼻吗?
发布(35)
评论
刷题
康萌北鼻
关注TA,不错过内容更新
关注
01-04 21:35
蔚来汽车_测开
蔚来实习&校招内推
NIO校招内推码: 1EM7GY6 投递链接: https://nio.jobs.feishu.cn/s/i8KvFyE4公司发展很快,项目很多,缺少大量人手;虚位以待,快把简历咋过来吧;期待你的到来哦!(通过内推途径,效率更高哦!) #内推# #校招# #实习# #蔚来内推#
投递蔚来等公司10个岗位
0
点赞
评论
收藏
分享
01-04 21:34
已编辑
蔚来汽车_测开
蔚来校招&实习内推!!!
NIO校招内推码: 1EM7GY6 投递链接: https://nio.jobs.feishu.cn/s/i8KvFyE4公司发展很快,项目很多,缺少大量人手;虚位以待,快把简历咋过来吧;期待你的到来哦!(通过内推途径,效率更高哦!) #内推# #校招# #实习# #蔚来内推#
投递蔚来等公司10个岗位
0
点赞
评论
收藏
分享
2020-05-03 23:33
蔚来汽车_测开
2020-05-03
在牛客打卡3天,今天也很努力鸭!
0
点赞
评论
收藏
分享
2020-02-09 21:45
蔚来汽车_测开
开学延迟了,女朋友又有拖延症,真害怕她的论文完不成,万能的牛油请赐予她力量吧,加油!
0
点赞
评论
收藏
分享
2019-09-12 20:28
已编辑
蔚来汽车_测开
约瑟夫环及其变体
1.问题描述 q1.已知n个人(以编号1,2,3…n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列。 q2.已知n个人(以编号1,2,3…n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;原先编号为n的数是第几个出列的。 2.编程实现 q1 solution: #include <iostream> #include <queue> using namespace std; int main() { int ...
0
点赞
评论
收藏
分享
2019-09-12 20:28
已编辑
蔚来汽车_测开
Faster-RCNN学习
一文读懂Faster RCNN:https://zhuanlan.zhihu.com/p/31426458 Faster RCNN 学习笔记 : https://www.cnblogs.com/wangyong/p/8513563.html
0
点赞
评论
收藏
分享
2019-09-12 20:28
已编辑
蔚来汽车_测开
在代码中分析VINS
1.在代码中分析VINS—图解feature_tracker.cpp 2.在代码中分析VINS—图解特征点管理(feature_manager.h)
0
点赞
评论
收藏
分享
2019-09-12 20:29
已编辑
蔚来汽车_测开
2.在代码中分析VINS---图解特征点管理(feature_manager.h)
这篇博客主要讲解VINS中特征点的管理,它主要涉及3个类,位于feature_manager.h中的FeaturePerFrame、FeaturePerId、FeatureManager 1.特征点管理示意图 上图中有两个路标特征点P1,P2,分别被帧1~2,2~4观测到。 2.FeaturePerId 就特征点P1来说,它被两个帧观测到,第一次观测到P1的帧为frame1,即start_frame=1,最后一次观测到P1的帧为frame2,即endframe()=2,并把start_frame~endframe() 对应帧的属性存储起来,对应的示意图如下: 上述对应的代码为:...
0
点赞
评论
收藏
分享
2019-09-12 20:29
已编辑
蔚来汽车_测开
1.在代码中分析VINS---图解feature_tracker.cpp
该文件的主要函数为void FeatureTracker::readImage(const cv::Mat &_img, double _cur_time) 该文件的中文注释代码以放到我的github上,代码结合我下面画的图更容易理解,欢迎大家star!,本人也是vi-slam新手,分析不到位的地方,欢迎大家批评指正! 1. 第一帧图像进来 当第一帧图像进来时,执行函数` cv::goodFeaturesToTrack(forw_img, n_pts, MAX_CNT - forw_pts.size(), 0.01, MIN_DIST, mask),其中forw_img表示当前...
0
点赞
评论
收藏
分享
2019-09-12 20:33
已编辑
蔚来汽车_测开
单链表反转
链表有以下三个数据组成 程序: #include "iostream" #include<unordered_set> #include<algorithm> #include <malloc.h> using namespace std; typedef struct list { int data; struct list* next; }List, *p_List; //创建一个链表 p_List creatList() { p_List head_list = (p_List)malloc(sizeof(List)...
0
点赞
评论
收藏
分享
2019-09-12 20:30
已编辑
蔚来汽车_测开
3.Leetcode Longest Substring Without Repeating Characters
题目 Given a string, find the length of the longest substring without repeating characters. Example 1: Input: “abcabcbb” Output: 3 Explanation: The answer is “abc”, with the length of 3. 解题方法 借助unordered_set来实现最大连续无重复字符串,基础知识参考我的博客 class Solution { public: int lengthOfLongestSubstring(string...
0
点赞
评论
收藏
分享
2019-09-12 20:30
已编辑
蔚来汽车_测开
map、set、unordered_map、unordered_set
基本概念 map是(关键字,值)对的集合,例如,可以将一个人的名字作为关键字,将其电话号码作为值,我们可以将这个人的名字作为下标获取此人的电话号码。 set是(关键字)的简单集合,当只是想知道一个值是否存在时,set是最有用的。例如,一个企业可以定义一个名为bad_checks的set来保存那些曾经开过空头支票的人的名字。在接受一张支票前,可以查询bad_checks来查询顾客的名字是否在其中。 unordered_map和unordered_set外部实现与map和set相同,但是内部实现不同,set和map内部实现是基于RB-Tree,而unordered_set和unordered_m...
0
点赞
评论
收藏
分享
2019-09-12 20:34
已编辑
蔚来汽车_测开
快速排序扩展---topK
#include "iostream" #include "string.h" int partition(int a[],int left,int right) { int i = left; int j = right; int temp = a[i]; while (i<j) { while (i<j && a[j] >= temp) j--; if (i<j) a[i] = a[j]; while (i<j && a[i] <= temp) ...
0
点赞
评论
收藏
分享
2019-09-12 20:31
已编辑
蔚来汽车_测开
2.LeetCode Add Two Numbers
题目: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list. You may assume the two numbers do not contain any leading zero, except the...
0
点赞
评论
收藏
分享
2019-09-12 20:31
已编辑
蔚来汽车_测开
快速排序
#include "iostream" //left,right为数组下标 int partition(int a[],int left,int right) { int i = left; int j = right; int temp = a[i]; while (i<j) { while (i<j && a[j] >= temp)//必须加等号 j--; if (i<j) a[i] = a[j]; while (i<j && a[i] <= temp)//必须加等号 ...
0
点赞
评论
收藏
分享
1
2
3
关注他的用户也关注了:
牛客网
牛客企业服务