摘要: 哈希表 什么时候使用哈希法,当我们需要查询一个元素是否出现过,或者一个元素是否在集合里的时候,就要第一时间想到哈希法。 有效的字母异位词 用数组! class Solution { public boolean isAnagram(String s, String t) { char[] schar 阅读全文
posted @ 2025-03-31 23:00 Anson_502 阅读(38) 评论(0) 推荐(0)