牛客406661200号
牛客406661200号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客406661200号的博客
全部文章
/ 题解
(共6篇)
题解 | #二叉树的下一个结点#
1. 第一种方法 写出树的中序遍历 // function TreeLinkNode(x){ // this.val = x; // this.left = null; // this.right = null; // this.next = null; // } v...
Javascript Node
2021-10-09
3
534
题解 | #复杂链表的复制#
1.在每个节点插入复制的节点 2.对复制节点的random进行赋值 3.对链表进行拆分 function RandomListNode(x){ this.label = x; this.next = null; this.random = null; } function C...
Javascript Node
2021-09-30
0
412
题解 | #左旋转字符串#
function LeftRotateString(str, n) { // write code here if(!str || n>=str.length) { if(!str) {str = ''} return str } ...
Javascript Node
2021-09-29
0
349
题解 | #和为S的两个数字#
function FindNumbersWithSum(array, sum) { // write code here var i = 0; var j = array.length - 1 var result = [] while(i<j) { ...
Javascript Node
2021-09-28
0
367
题解 | #栈的压入、弹出序列#
使用一个栈模拟压入弹出操作 var inarr = [] var outarr = [] function IsPopOrder(pushV, popV) { // write code here for (var i=0;i<pushV.length;i++) { ...
Javascript Node
2021-09-27
7
515
题解 | #包含min函数的栈#
var arr = [] var minarr = [] function push(node) { // write code here arr.push(node) if(minarr.length==0) { minarr.push(node) ...
Javascript Node
2021-09-27
0
445