Python_zhang
Python_zhang
全部文章
分类
题解(93)
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
(共84篇)
题解 | #机器人的运动范围#
void DFS(int threshold, int rows, int cols, int x, int y, int visit[][101]); int movingCount(int threshold, int rows, int cols) { int visit[101][1...
C
2022-03-09
0
520
题解 | #在二叉树中找到两个节点的最近公共祖先#
int lengthOfLongestSubstring(char* s) { //dp[i],下标为i的字符作为结尾的最长字符串长度 //用hash表记录字符最后出现位置 int hash[128]; memset(hash, -1, sizeof(hash)); ...
C
2022-03-09
1
430
买卖股票的最好时机(一)
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param prices int整型一维数组 * @param pricesLen int prices数组长度 * @return int整型 * * C语言声明定义全局变量请加...
C
2022-03-08
0
401
题解 | #二叉树中和为某一值的路径(三)#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * 代码中的类名、方法...
C
2022-03-04
1
366
部分翻转
#include <stdlib.h> #include <stdio.h> #include <string.h> typedef struct ListNode { int val; struct ListNode *next; } ListNode...
C
2022-03-03
0
332
题解 | #二叉树的下一个结点#
static struct TreeLinkNode *pre = NULL; static struct TreeLinkNode *ret = NULL; //中序遍历,结果存入ret void Inorder(struct TreeLinkNode *root, int val) { i...
C
2022-03-03
0
377
题解 | #判断是不是平衡二叉树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * * @par...
C
2022-03-03
0
310
题解 | #二叉搜索树与双向链表#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * * @par...
C
2022-03-03
4
385
题解 | #二叉树中和为某一值的路径(二)#
//通用回溯方法的实现,用一个临时的数组来进行回溯 //当符合条件时申请空间保存回溯结果 #define MaxSize 5000 int tempPath[MaxSize]; int row = 0; int col[MaxSize]; int tempDepth = 0; int **path;...
C
2022-03-03
0
389
题解 | #从上往下打印二叉树#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; * * C语言声明定义全局变量请加上static,防止重复定义 */ /** * 代码中的类名、方法...
C
2022-03-02
0
304
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页