摘要: 字符串匹配的KMP算法 - 阮一峰的网络日志 The Knuth-Morris-Pratt Algorithm in my own words - jBoxer "部分匹配值"就是"前缀"和"后缀"的最长的共有元素的长度。以"ABCDABD"为例, - "A"的前缀和后缀都为空集,共有元素的长度为0 阅读全文
posted @ 2025-10-17 18:12 ChuckLu 阅读(6) 评论(0) 推荐(0)
摘要: 图为什么会有生成树?图不是顶点和边的集合吗?顶点确定了,边也确定了,这个图不就固定了吗? 你提出的这个问题非常好,它触及了图的结构和生成树的核心概念。的确,图是由顶点(节点)和边(连接节点的线)组成的,它是一个固定的结构。但是,生成树是一个图中的特定子结构,并不是说图本身就自然地包含生成树。下面我将 阅读全文
posted @ 2025-10-15 18:48 ChuckLu 阅读(19) 评论(0) 推荐(0)
摘要: Walks Trails and Paths in Graph Theory - YouTube Closed Walks, Closed Trails (Circuits) and Closed Paths (Directed Cycles) in Graph Theory Recognizing 阅读全文
posted @ 2025-10-14 17:51 ChuckLu 阅读(7) 评论(0) 推荐(0)
摘要: 2025-10-31 Index Word Pronunciation Parts of Speech Explanation Translation in Chinese 1 orthodoxy /ˈɔːθəˌdɒksi/ noun authorized or generally accepted 阅读全文
posted @ 2025-10-01 16:49 ChuckLu 阅读(21) 评论(0) 推荐(0)
摘要: 2025-10-31orthodoxy, freighter, crease, Oceania, unobtrusive,entice, grapple, shin, confederate, belie,lieu, haze, haggle, indisputable, gorge 2025-10 阅读全文
posted @ 2025-10-01 16:48 ChuckLu 阅读(12) 评论(0) 推荐(0)
摘要: 方案 B:禁止页面调用 pause() 你还可以粗暴 hook 掉视频的 pause() 方法: HTMLMediaElement.prototype.pause = function() { console.log("pause() 被拦截");}; 这样页面调用 video.pause() 就不 阅读全文
posted @ 2025-09-04 13:19 ChuckLu 阅读(38) 评论(0) 推荐(0)
摘要: 2025-09-30 index word pronunciation parts of speech explanation translation in Chinese 1 literal /ˈlɪtərəl/ adjective representing the exact words or 阅读全文
posted @ 2025-09-01 23:11 ChuckLu 阅读(38) 评论(0) 推荐(0)
摘要: 2025-09-30literal, sanctum, ethereal, transcend, ramification,deviation, Titanic, constancy, pertinent, slur,qualm, relapse, constraint, barricade, ne 阅读全文
posted @ 2025-09-01 23:10 ChuckLu 阅读(9) 评论(0) 推荐(0)
摘要: 详细日本麻将教学(入门篇) - 哔哩哔哩 十七、点数计算 到这里就是基础篇的最后一个章节了,也是稍微复杂一点的章节。不过只要了解原理,经过一些实际的计算很快就能够掌握的。日麻中,影响手牌得点的因素有三 个——亲子家、符数和翻数。 通过上面两个章节,我们可以计算出手牌的符数和翻数,然后通过一定的计算就 阅读全文
posted @ 2025-08-21 00:58 ChuckLu 阅读(224) 评论(0) 推荐(0)
摘要: 详细日本麻将教学(入门篇) - 哔哩哔哩 十六、符: 符这个概念在中国麻将中其实是有的,不过随着各个地方麻将本地化,渐渐的将这个概念抛弃了。因为符是一个比较复杂的概念。想要熟练的计算符数需要一定程 度的练习。在日本麻将中,符数是一个很重要的概念,因为它影响到对局结束后的点数计算。下面具体介绍日麻中符 阅读全文
posted @ 2025-08-21 00:45 ChuckLu 阅读(108) 评论(0) 推荐(0)