Mr李 的文章
-
1044. 最长重复子串
字符串哈希学习 h[i] = h[i-1] * p + s[i]; p[i] = p[i - 1] * p; hashNum = h[i + len] - h[i] * p[len]; 可以用字符串哈希来写 且仅当两个哈希值溢出程度与…… -
2020第十一届Java 组蓝桥杯省赛真题——排序
题目描述 本题为填空题,只需要算出结果后,在代码中使用输出语句将所填结果输出即可。 小蓝最近学习了一些排序算法,其中冒泡排序让他印象深刻。 在冒泡排序…… -
python面向对象培训
面向对象编程:Object Oriented Programming,简称OOP,是一种程序设计方法。OOP把对象作为程序的基本单元,一个对象包含了数据和操作数据的方法。Python就…… -
-
-
【Kerberos】问题汇总 (持续更新)
1、kerberos下hdfs 的nn和jn通信问题记录 2021-12-23 17:17:21,011 WARN SecurityLogger.org.apache.hadoop.ipc.Server: Auth failed for 172.16.82.190:41133…… -
-
Tutorial: How-to Install TV Bro to Chromecast with Google TV
Learn how to install TV Bro to the Chromecast with Google TV. TV Bro is the best browser for your TV. You can surf the web, stream videos, download …… -
-
算法题:有效的括号 难度:简单
这道题应用了栈的知识,当然不用栈也是可以写出来的 解法 class Solution { public boolean isValid(String s) { int length = s.length(); ……
友情链接