牛客178374109号
牛客178374109号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客178374109号的博客
全部文章
(共36篇)
题解 | #二叉树的中序遍历#
/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 *...
2023-03-20
0
215
题解 | #二维数组中的查找#
function Find(target, array) { // write code here for (i = 0; i < array.length; i++) { if (array[i].indexOf(target) != -1) { ...
2023-03-19
0
285
题解 | #二分查找-I#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param target int整型 * @return int整型 */ function search( nums , tar...
2023-03-19
0
323
题解 | #判断一个链表是否为回文结构#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 the head * @return bool布尔型 */ functi...
2023-03-18
0
230
题解 | #删除链表的倒数第n个节点#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @param n int整型 * @return ListNode类...
2023-03-18
0
279
题解 | #链表中倒数最后k个结点#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead List...
2023-03-18
0
278
题解 | #判断链表中是否有环#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @return bool布尔型 */ function hasC...
2023-03-17
0
152
题解 | #链表内指定区间反转#
/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @param m int整型 * @param n int整型 *...
2023-03-16
0
281
题解 | #单向绑定#
{"css":"","js":"","html":"<!DOCTYPE html>\n<html>\n <head>\n <meta charset=utf-8>\n </head>\n <body&g...
2023-03-12
0
217
题解 | #分隔符#
{"css":"","js":"","html":"<!DOCTYPE html>\n<html>\n <head>\n <meta charset=utf-8>\n </head>\n <body&g...
2023-03-12
0
299
首页
上一页
1
2
3
4
下一页
末页