- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面的代码接受用户输入(int 值),然后查找重复、偶数、数量。
2 个问题:
- The 1st even number gets printed 3 times, if in your input you have 2 7 19 8 it will look like 2, 2, 2, 8 . Why I am unable to
understand.- The hashmap part where I put
list.get(intNum)+1
to count a value twice gives out of bound. Without that it runs. How can I count a number twice?
提前致谢。
public class Various {
static Scanner userinput= new Scanner(System.in);
static int nums;
static int big;//will be used to find bug number in array
public static void main(String[] args) {
List<Integer> list= new ArrayList<>();//for all numbers
List<Integer> listEven= new ArrayList<>(); //just for evens
Map<Integer,Integer> hmap= new HashMap<Integer,Integer>(); //number count
System.out.println("Enter some numbers: ");
nums=userinput.nextInt();
big=nums;
int evenNumber;
list.add(nums);
while(userinput.hasNextInt()){
nums=userinput.nextInt();
//below part of the code finds biggest value
if(nums>big){
big=nums;
}
//Above part of the code finds biggest value
list.add(nums);
//below part of the code finds/prints duplicate value
for(int i=0;i<list.size()-1;i++){
for(int j=i+1;j<list.size();j++){
if(list.get(i)==list.get(j)){
System.out.println("Duplicate " + list.get(j));
}
}
//Above part of the code finds/prints duplicate value
}
//below part of the code finds even numbers
for(int i=0;i<list.size();i++){
//for loop will start from 0 till user input
if(list.get(i)%2==0){
//if any of those i values%2=0 those will be Even and I will capture those
listEven.add(list.get(i));
}
//Above part of the code finds even numbers
}
//below part of the code finds number occurrence count
for(Integer intNum: list){
if(!(hmap).containsKey(intNum)){
hmap.put(intNum, 1);
}else{
//below part to take care if a number comes twice i add 1 more(+1)
hmap.put(intNum, list.get(intNum)+1);
}
//Above part of the code finds number occurrence count
}
}
System.out.println("Values are " + list);
System.out.println("Biggest value " + big);
System.out.println("Even numbers " + listEven);
System.out.println("Numbers in list and occurance " + hmap);
}
}
最佳答案
在您的代码中,您有一个 while
循环来检查数字,但每次用户输入数字时,您都会循环遍历数字列表并检查偶数。
最合乎逻辑的方法是更改代码,以便在用户输入所有号码后检查偶数。或者您可以添加这个,这是一个较小的解决方案,但它会起作用:
<小时/>listEven.add(list.get(i));
将上面的代码更改为下面的代码。
if (!listEven.contains(list.get(i))) {
listEven.add(list.get(i));
}
错误在于这段代码:
// below part of the code finds number occurrence count
for (Integer intNum : list) {
if (!(hmap).containsKey(intNum)) {
hmap.put(intNum, 1);
} else {
// below part to take care if a number comes twice i add 1
// more(+1)
hmap.put(intNum, list.get(intNum) + 1);
}
// Above part of the code finds number occurrence count
}
<小时/>
您正在尝试执行list.get(intNum)
,但是方法get
需要索引,而不需要 您要查找的值。我认为您的意思是输入 hmap.get(intNum)
而不是 list.get(intNum)
,这将正确更新计数。
关于java - 当尝试对相同的值进行两次计数时,循环不正确且超出 HashMap 的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53142929/
我有不同的结构,它们都包含一个 HashMap与 String作为键,但具有不同的值类型。例如,一个结构有一个类型为 HashMap 的成员, 另一个将有一个 HashMap 类型的成员, 等等。 我
我想制作一个包含学生姓名和科目的板,每个学生在每个科目中都有一个成绩(或者没有..他可以离开考试而不写,然后他的案子将是空的)。我只想使用 HashMap。我的意思是,它会是这样的: HashMap>
是否有内存和速度高效的方法来在 HashMap 中动态存储唯一键:值对? key 保证是唯一的,但它们的数量经常变化。插入和删除必须很快。 我所做的是包含有符号距离场的八叉树(非线性/完整)。八叉树经
有谁知道为什么选择通过 LinkedList 而不是另一个 Hashmap 来实现 HashMap 的存储桶。如果桶本身变成了 HashMap,那么 contains 或 get 的时间复杂度似乎是
我想创建一个具有嵌套结构的 HashMap,就像这个复杂的示例: { type: boy name: Phineas father: type: man
这个问题在这里已经有了答案: How do I create a global, mutable singleton? (7 个答案) 关闭 7 年前。 我想要一个可扩展的字典,将 Object 与
HashMap> hm = new HashMap>(); hm.put("Title1","Key1"); for(int i=0;i hm1 = new H
我必须修改当前代码以适应 Spring MVC。我有 HashMap hashmap = new HashMap(); request.setAttribute("dslrErrors", hashm
我正在尝试进行一些错误捕获。 错误应该检查数组的长度是否小于 2,并检查 HashMap 是否包含用户输入的键。 捕获的错误必须仅使用 if 语句,并且必须使用 .length() 方法,并且必须使用
在 stackoverflow 上提出另一个问题后,(Java- Why this program not throwing concurrent Modification exception)我开始
我有两个类,想使用 org.dozer.Mapper( http://dozer.sourceforge.net/ ) 将 Female 对象的属性映射到 Male 对象。 第一类是: public
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
是否有任何方法可以检查 HashMap 是否包含一组特定的键(这些键是在数组中给出的)。当我尝试类似下面的代码时,它返回 false。 map.containsKey(arrayOf("2018-01
跟进我的问题:How To Access hash maps key when the key is an object 我想尝试这样的事情:webSearchHash.put(xfile.getPa
我有一个可扩展的 ListView ,对于每个 child ,我需要有 4 个“额外”或字符串或其他名称来调用它:- 子标题- 描述- 链接1- 链接2 跟着教程,创建 ListView 、不同的 p
我想确保这是正确的,因为如果不正确,它可能会破坏我的应用程序。 我有这个: private static HashMap> balance = new HashMap<>(); 如果我得到这样的值:
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我是一名优秀的程序员,十分优秀!