Fadeways
Fadeways
全部文章
题解
归档
标签
去牛客网
登录
/
注册
阿金的刷题记录册
我不是卷,我是卷心菜
全部文章
/ 题解
(共34篇)
题解 打印杨辉三角形
打印杨辉三角形 function yhsjx(n){ let arr = []; for(let d = 0;d<n;d++){ arr.push([]) } let i = 0,j = 0; for( i = 0;i<n;i++)...
Javascript Node
HTML/CSS/JavaScript
2021-09-29
0
337
题解 | #括号序列#
/** * * @param s string字符串 * @return bool布尔型 */ function isValid( s ) { // write code here let temp = []; let ret = null; s....
Javascript Node
HTML/CSS/JavaScript
2021-09-28
0
425
题解 | #最大公约数#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 求出a、b的最大公约数。 * @param a int * @param b int * @return int */ function gcd(a, b) { // write ...
Javascript Node
HTML/CSS/JavaScript
2021-09-27
0
329
题解 | #在二叉树中找到两个节点的最近公共祖先#
/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * * @param root TreeNode类 * @param o...
Javascript Node
HTML/CSS/JavaScript
2021-09-27
10
656
题解 | #设计LRU缓存结构#
/** * lru design * @param operators int整型二维数组 the ops * @param k int整型 the k * @return int整型一维数组 */ function LRU( operators , k ) { // write...
Javascript Node
2021-09-27
0
419
题解 | #两数之和#
/** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ //思路就是用阮一峰快排,然后循环比较就行 function twoSum( numbers , target ) ...
Javascript Node
2021-09-26
1
0
题解 | #两数之和#
/** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ function twoSum( numbers , target ) { // write code he...
Javascript Node
2021-09-26
2
511
题解 | #求二叉树的层序遍历#
/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * * @param root TreeNode类 * @retu...
Javascript Node
2021-09-25
0
412
题解 | #重建二叉树#
/* function TreeNode(x) { this.val = x; this.left = null; this.right = null; } */ function reConstructBinaryTree(pre, vin) { // write ...
Javascript Node
2021-09-25
2
404
题解 | #二分查找-II#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 如果目标值存在返回下标,否则返回 -1 * @param nums int整型一维数组 * @param target int整型 * @return int整型 */ function ...
Javascript Node
2021-09-25
0
349
首页
上一页
1
2
3
4
下一页
末页