Yang760724227
Yang760724227
全部文章
分类
题解(50)
归档
标签
去牛客网
登录
/
注册
Yang760724227的博客
全部文章
(共50篇)
题解 | #判断一个链表是否为回文结构#
* function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 the head * @return bool布尔型 */ function ...
Javascript Node
链表
2022-01-11
3
421
题解 | #单链表的排序#
* function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 the head node * @return ListNode类 */ fu...
Javascript Node
链表
2022-01-11
6
444
题解 | #合并两个排序的链表#
this.val = x; this.next = null; } function Merge(pHead1, pHead2) { // write code here let cur = new ListNode(-1) let head = cur wh...
Javascript Node
链表
2022-01-11
0
541
题解 | #删除链表的倒数第n个节点#
快慢指针 复杂度:O(n);O(1) * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @param n int整型...
Javascript Node
链表
2022-01-11
0
352
题解 | #两个链表生成相加链表#
* function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head1 ListNode类 * @param head2 ListNode类 * @return L...
Javascript Node
链表
2022-01-10
1
411
题解 | #删除有序链表中重复的元素-II#
* function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @return ListNode类 */ function de...
Javascript Node
链表
2022-01-10
0
319
题解 | #链表中的节点每k个一组翻转#
* function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @param k int整型 * @return ListNo...
Javascript Node
链表
2022-01-10
11
565
题解 | #链表中环的入口结点#
this.val = x; this.next = null; }*/ function EntryNodeOfLoop(pHead) { // write code here //初始化:快指针fast指向头结点,慢指针slow指向头结点; //让fast一次走两步...
Javascript Node
链表
2022-01-10
0
376
题解 | #判断链表中是否有环#
快慢指针 js * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * * @param head ListNode类 * @return bool布尔型 */ function...
Javascript Node
C
Java
链表
2022-01-10
0
432
题解 | #反转链表#
js this.val = x; this.next = null; }*/ function ReverseList(pHead) { // write code here if(!pHead || !pHead.next){ return pHea...
C
Javascript Node
链表
2022-01-10
1
356
首页
上一页
1
2
3
4
5
下一页
末页