加油做题
加油做题
全部文章
分类
题解(51)
归档
标签
去牛客网
登录
/
注册
加油做题的博客
做题笔记
全部文章
(共53篇)
9.13 地平线机器人,规划控制算法工程师 一面经
全程只有30分钟,这是我面过的第一个面试官开了摄像头的企业 问项目 手撕:最小路径 https://www.nowcoder.com/practice/7d21b6be4c6b429bb92d219341c4f8bb?tpId=295&tqId=100901...
C++
动态规划
2022-09-14
2
1582
题解 | #二叉树中和为某一值的路径(二)#
本着能不用全局变量就不用全局变量的原则 void dfs(struct TreeNode* root,int target,int** returnColumnSizes,int* returnSize,int count,int* path,int** res){ if(root==NUL...
C
2022-06-24
0
412
题解 | #二叉树的前序遍历#
非递归方法,使用指针数组代替栈 int* preorderTraversal(struct TreeNode* root, int* returnSize ) { int* res=(int*)malloc(sizeof(int)*100); struct TreeNode* sta...
C
2022-06-20
3
391
题解 | #二叉树的中序遍历#
非递归方法,使用指针数组代替栈 int* inorderTraversal(struct TreeNode* root, int* returnSize ) { *returnSize=0; struct TreeNode* stack[1000]; struct TreeN...
C
2022-06-20
3
328
题解 | #不同路径的数目(一)#
int uniquePaths(int m, int n ) { int** dp=(int**)malloc(sizeof(int*)*m); for(int i=0;i<m;i++){ dp[i]=(int*)malloc(sizeof(int)*n); ...
C
动态规划
2022-06-19
0
375
题解 | #矩阵的最小路径和#
直接在原矩阵上操作即可 int minPathSum(int** matrix, int matrixRowLen, int* matrixColLen ) { for(int i=0;i<matrixRowLen;i++){ for(int j=0;j<*ma...
C
动态规划
2022-06-19
1
506
题解 | #最长公共子串#
char* LCS(char* str1, char* str2 ) { int len1=strlen(str1); int len2=strlen(str2); //初始化一个len1+1和len2+1大小的二维数组,+1是为了避免判断边界条件 int dp[le...
C
动态规划
2022-06-19
0
442
题解 | #最长不含重复字符的子字符串#
本来是想动态规划,写写的写成了滑动窗口,凑活看看 int lengthOfLongestSubstring(char* s ) { int len=strlen(s); if(len==0){ return 0; } int dp[len];//记录截...
C
滑动窗口
2022-06-19
0
441
题解 | #最长公共子序列(二)#
int max(int a,int b){ return a>b?a:b; } char* LCS(char* s1, char* s2 ) { int len1=strlen(s1); int len2=strlen(s2); if(len1==0||len...
C
2022-06-18
3
416
题解 | #合并k个已排序的链表#
对折合并 struct ListNode* merge(struct ListNode* head1,struct ListNode* head2){ if(!head1){ return head2; } if(!head2){ return...
C
2022-06-16
1
440
首页
上一页
1
2
3
4
5
6
下一页
末页