请为这段代码加注释public int minimizedStringLength(String s) { HashSet<Character> set = new HashSet<>(); for(int i =0 ;i < s.length() ;i++){ set.add(s.charAt(i)); } return set.size(); } 作者:zzcoding-x 链接:https://leetcode.cn/problems/minimize-string-length/solution/ha-xi-biao-by-zzcoding-x-9ptr/ 来源:力扣(LeetCode) 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
时间: 2024-03-04 07:50:14 浏览: 66
java中List、Array、Map、Set等集合相互转换
/*
* 该方法的作用是计算输入字符串中不同字符的个数
* 参数说明:输入字符串s
* 返回值:不同字符的个数
*/
public int minimizedStringLength(String s) {
HashSet<Character> set = new HashSet<>(); // 使用HashSet存储不同的字符
for(int i =0 ;i < s.length() ;i++){ // 遍历字符串s中的每一个字符
set.add(s.charAt(i)); // 将字符加入HashSet中
}
return set.size(); // 返回HashSet中不同字符的个数
}
阅读全文