发布网友 发布时间:2022-04-24 00:23
共4个回答
热心网友 时间:2023-10-15 08:50
String s = "485729304";热心网友 时间:2023-10-15 08:51
词频统计吗?
不需要对齐字典数组吗?
//对于下列字符:追问是【1,1,2,1】这一种哦~谢谢啊
追答String s = "hello world";
Map<String,Integer> map = new HashMap<String, Integer>();
for (String s1 : s.split("")) {
if (map.containsKey(s1)){
map.put(s1,map.get(s1)+1);
}else{
map.put(s1,1);
}
}
//获取字符数组
System.out.println(map.keySet());
//获取对应字符的字数数组
System.out.println(map.values());
//输出:
[ , r, d, e, w, h, l, o]
[1, 1, 1, 1, 1, 1, 3, 2]//这是你要的
热心网友 时间:2023-10-15 08:51
String s = "485729304";热心网友 时间:2023-10-15 08:51
词频统计吗?
不需要对齐字典数组吗?
//对于下列字符:追问是【1,1,2,1】这一种哦~谢谢啊
追答String s = "hello world";
Map<String,Integer> map = new HashMap<String, Integer>();
for (String s1 : s.split("")) {
if (map.containsKey(s1)){
map.put(s1,map.get(s1)+1);
}else{
map.put(s1,1);
}
}
//获取字符数组
System.out.println(map.keySet());
//获取对应字符的字数数组
System.out.println(map.values());
//输出:
[ , r, d, e, w, h, l, o]
[1, 1, 1, 1, 1, 1, 3, 2]//这是你要的
热心网友 时间:2023-10-15 08:51
for(int i=0;i<list.size();i++){
weight[i]=Integer.parseInt(list.get(i));}
热心网友 时间:2023-10-15 08:52
可以写到方法体里,不能写在方法的外面。热心网友 时间:2023-10-15 08:51
for(int i=0;i<list.size();i++){
weight[i]=Integer.parseInt(list.get(i));}
热心网友 时间:2023-10-15 08:52
可以写到方法体里,不能写在方法的外面。