摘要: 大道至简,知易行难。 花径不曾缘客扫,蓬门今始为君开。 从今天开始改变,这是对平庸生活最好的回击。 阅读全文
posted @ 2023-03-19 21:39 fishcrazy 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 加入任意数量的任意字符,使其字符串变成回文串 思路: 先反转输入的字符串,然后遍历,与原字符串比较,找到reverse对应s的前缀 例如 s:noo reverse:oon 当i=0时,不匹配 当i=1时,匹配 所以需要在s后加入n,index为reverse.length()-i public class Main { public stat 阅读全文
posted @ 2023-03-19 16:39 fishcrazy 阅读(58) 评论(0) 推荐(0) 编辑
摘要: HashMap正确遍历方式,千万不要再forforfor啦!!! for (int i = 0; i < map.size(); i++) { if (map.get(i)/n>=0.01) { num++; } } 上述代码报空指针异常。为什么? 循环变量 i 取值的范围是从0到 map.size(),但是这里的 map.size() 指的是 HashMap 中 阅读全文
posted @ 2023-03-19 14:46 fishcrazy 阅读(84) 评论(0) 推荐(0) 编辑