摘要:
Two Strings Are Anagrams判断两个字符串是否为重组的,没想到太好的方法,直接用计数法简单粗暴。public class Solution { /** * @param s: The first string * @param b: The second s... 阅读全文
摘要:
问题描述:LRU算法:优先把那些最长时间没使用的对象置换掉。根据数据的历史访问记录来进行淘汰数据,其核心思想是“如果数据最近被访问过,那么将来被访问的几率也更高”。JAVA实现:测试:public class preface { public static void main(String[]... 阅读全文