Shu-How Zの小窝

Loading...
上一页 1 2 3 4 5 6 ··· 26 下一页
摘要: Git全套学习教程Github码云Git零基础自学教程精通Git使用-广州新东方职业教育 git https://www.bilibili.com/video/BV1iS421d7bh 6 12 0.1_学习内容_学习目标 Git高效实践 1.1_第1章概述_主要内容 第1章Git概述Git是一款版 阅读全文
posted @ 2026-04-23 19:33 KooTeam 阅读(18) 评论(0) 推荐(0)
摘要: 61 旋转链表 /** * Definition for singly-linked list. * function ListNode(val, next) { * this.val = (val undefined ? 0 : val) * this.next = (next undefined 阅读全文
posted @ 2026-04-20 21:30 KooTeam 阅读(8) 评论(0) 推荐(0)
摘要: LeetCode-25 K个一组反转链表 1:52:03 /** * Definition for singly-linked list. * function ListNode(val, next) { * this.val = (val undefined ? 0 : val) * this.n 阅读全文
posted @ 2026-04-15 17:20 KooTeam 阅读(8) 评论(0) 推荐(0)
摘要: var reverseBetween = function(head, left, right) { if(!head)return null; let ret=new ListNode(-1,head),pre=ret,cnt=right-left+1; while(--left){ pre=pr 阅读全文
posted @ 2026-04-08 19:43 KooTeam 阅读(6) 评论(0) 推荐(0)
摘要: 206. 反转链表 1:17:41 /** * Definition for singly-linked list. * function ListNode(val, next) { * this.val = (val undefined ? 0 : val) * this.next = (next 阅读全文
posted @ 2026-04-03 18:27 KooTeam 阅读(7) 评论(0) 推荐(0)
摘要: /** * @param {number} n * @return {boolean} */ var isHappy = function(n) { let pre=n,cur=getNext(n); while(cur!==pre && cur!==1){ pre=getNext(pre) cur 阅读全文
posted @ 2025-12-11 18:13 KooTeam 阅读(19) 评论(0) 推荐(0)
摘要: var detectCycle = function(head) { if(!head)return null; let pre=head,cur=head; while(cur&&cur.next){ pre=pre.next; cur=cur.next.next; if(pre cur){ le 阅读全文
posted @ 2025-11-03 18:57 KooTeam 阅读(14) 评论(0) 推荐(0)
摘要: 685.冗余连接 4:03 // 定义并查集类 class UnionFind{ // 构造函数初始化并查集 constructor(n){ this.parent = new Array(n).fill(0).map((item,index)=>index) this.rank = new Arr 阅读全文
posted @ 2025-09-13 19:43 KooTeam 阅读(22) 评论(0) 推荐(0)
摘要: Webpack从入门到精通 https://www.bilibili.com/video/BV1e7411j7T5 2 4 01_尚硅谷_课程介绍 HMR loader resolve plugin optimization devtool dll 性能优化 webpack5 tree shakin 阅读全文
posted @ 2025-05-29 18:30 KooTeam 阅读(54) 评论(0) 推荐(0)
摘要: 765.情侣牵手 3:32 //遍历row数组,每次都去取出来两个人,我们知道正常的情侣他的编号从0开始的 //一堆正确的情侣就是一个是偶数一个是奇数;并且奇数=偶数+1;和奇数/2.==偶数/2;这个时候才是情侣;否则就需要将两个编号除以2之后的结果进行联通,进行交换次数: //当N-1对配对成功 阅读全文
posted @ 2025-05-27 16:41 KooTeam 阅读(34) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 26 下一页