蓉城小晋
蓉城小晋
全部文章
题解
归档
标签
去牛客网
登录
/
注册
蓉城小晋的博客
记录转码人员用js艰难实现算法,尽量清晰易读
全部文章
/ 题解
(共50篇)
题解 | #JZ48 最长不含重复字符的子字符串#
```/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @return int整型 */ function lengthOfLongestSubstring( s ) { //遍历每一个...
Javascript Node
2021-12-02
0
475
题解 | #JZ 34二叉树中和为某一值的路径(二)#
```/* function TreeNode(x) { this.val = x; this.left = null; this.right = null; } */ function FindPath(root, expectNumber) { // write ...
Javascript Node
2021-11-25
2
420
题解 | #JZ84 二叉树中和为某一值的路径(三)#
```/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可...
Javascript Node
2021-11-25
3
508
题解 | #在二叉树中找到两个节点的最近公共祖先#
```/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * * @param root TreeNode类 * @para...
Javascript Node
2021-11-25
2
453
题解 | #JZ68 二叉搜索树的最近公共祖先#
```/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可...
Javascript Node
2021-11-24
3
570
题解 | #JZ78 把二叉树打印成多行#
```/* function TreeNode(x) { this.val = x; this.left = null; this.right = null; } */ function Print(pRoot) { // write code here if...
Javascript Node
2021-11-24
1
431
题解 | #JZ8 二叉树的下一个结点#
```/*function TreeLinkNode(x){ this.val = x; this.left = null; this.right = null; this.next = null; }*/ function GetNext(pNode) { ...
Javascript Node
2021-11-23
2
518
题解 | #二叉搜索树的第k个节点#
```/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可...
Javascript Node
2021-11-23
4
1053
题解 | #JZ77 按之字形顺序打印二叉树#
```/* function TreeNode(x) { this.val = x; this.left = null; this.right = null; } */ function Print(pRoot) { // write code here if...
Javascript Node
2021-11-23
0
532
题解 | #JZ12 矩阵中的路径#
```/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param matrix char字符型二维数组 * @param word string字符串 * @return bool布尔型 */ function hasPath(...
Javascript Node
2021-11-22
3
709
首页
上一页
1
2
3
4
5
下一页
末页