Image one is my file or you can create ur own file as long as it's similar to mine. image 2 is my program I want to write a 4th method(method 4) and the spec is:  A method to count the occurrences of each value in an array takes one parameter, an array of integers returns an array containing the number of times each value occurs in the parameter array. Also should call method 3 from method 4 Hint:  The general idea of this method is using an array with length maxVal+1(maxVal should get from method 3 already) to save the occurrences of each number. For example, if number 44 occurs 3 times in the file, your array should have a value 3 stored at index 44.

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter12: Secondary Storage Management
Section: Chapter Questions
Problem 13VE
icon
Related questions
Question

Image one is my file or you can create ur own file as long as it's similar to mine.

image 2 is my program

I want to write a 4th method(method 4) and the spec is: 

A method to count the occurrences of each value in an array

  • takes one parameter, an array of integers

  • returns an array containing the number of times each value occurs in the parameter array. Also should call method 3 from method 4
    Hint: 
    The general idea of this method is using an array with length maxVal+1(maxVal should get from method 3 already) to save the occurrences of each number. For example, if number 44 occurs 3 times in the file, your array should have a value 3 stored at index 44.

1 29//totol value in this file.
25
35
4 5
55
65
73
85
95
10 5
11 3
12 5
13 5
14 5
15 4
16 5
17 2
18 5
19 5
20 5
21 5
22 4
23 5
24 5
25 5
26 5
27 5
28 4
29 5
30 5
Transcribed Image Text:1 29//totol value in this file. 25 35 4 5 55 65 73 85 95 10 5 11 3 12 5 13 5 14 5 15 4 16 5 17 2 18 5 19 5 20 5 21 5 22 4 23 5 24 5 25 5 26 5 27 5 28 4 29 5 30 5
1 import java.util.*;
2 import java.io.*;
3 public class FunWithHistograms {
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
£ £ £ £ £ £ E B G D E ~~~~~~
23
24
25
26
27
28
30
33
34
35
37
38
39
40
41
42
43
44
45
46 }
public static void main(String[] args) throws FileNotFoundException {
printIntro();//method 1
}
}
public static void printIntro () {
System.out.println("The program will analyze data from a dataset of");
integer values. It will produce a");
System.out.println("non-negative
System.out.println("histogram of the data and output some statistics.");
System.out.println();
Scanner console = new Scanner (System.in);
System.out.print("input file name? ");
String fileName = console.nextLine();
Scanner inFile = new Scanner (new File(fileName));
}
int[] data = readData(inFile); //method 2
public static int[] readData (Scanner inFile) { //method 2
int numVals = inFile.nextInt ();
int[] data = new int[numVals];
}
for (int i = 0; i < numVals; i++) {
data[i] = inFile.nextInt ();
}
return data;
//method 3.
public static int findMax (int[] data) {
int maxValue = data[0];
for(int i = 0; i <data.length; i++) {
if(maxValue <data[i]) {
maxValue = data[i];
}
}
return maxValue;
//write method 4 plz
历史记
下载内
书签
缩放
JEP...
...
...
更多工
编辑
设置
帮助
Transcribed Image Text:1 import java.util.*; 2 import java.io.*; 3 public class FunWithHistograms { 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 £ £ £ £ £ £ E B G D E ~~~~~~ 23 24 25 26 27 28 30 33 34 35 37 38 39 40 41 42 43 44 45 46 } public static void main(String[] args) throws FileNotFoundException { printIntro();//method 1 } } public static void printIntro () { System.out.println("The program will analyze data from a dataset of"); integer values. It will produce a"); System.out.println("non-negative System.out.println("histogram of the data and output some statistics."); System.out.println(); Scanner console = new Scanner (System.in); System.out.print("input file name? "); String fileName = console.nextLine(); Scanner inFile = new Scanner (new File(fileName)); } int[] data = readData(inFile); //method 2 public static int[] readData (Scanner inFile) { //method 2 int numVals = inFile.nextInt (); int[] data = new int[numVals]; } for (int i = 0; i < numVals; i++) { data[i] = inFile.nextInt (); } return data; //method 3. public static int findMax (int[] data) { int maxValue = data[0]; for(int i = 0; i <data.length; i++) { if(maxValue <data[i]) { maxValue = data[i]; } } return maxValue; //write method 4 plz 历史记 下载内 书签 缩放 JEP... ... ... 更多工 编辑 设置 帮助
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Thank you! 
base on these methods, I want to write one more method

Spec for method 5:

A method to print a text-based histogram

  • takes one parameter, an array of integers

  • no return value

image 2 is the example of expected output.

Hint: basically it means base on the file, if number 20 appears once in the file, then I will print one star(*) after the number 20. I think we can get these information from method 4

201 *
211
221
231
241
25| *
261 *
27 *
281
29| **
30 *
31 **
321
331
341
351 **
36 ***
37 **
38
39
40
***
**
***
41 ***
42 ***
43 | ****
**
k*
Transcribed Image Text:201 * 211 221 231 241 25| * 261 * 27 * 281 29| ** 30 * 31 ** 321 331 341 351 ** 36 *** 37 ** 38 39 40 *** ** *** 41 *** 42 *** 43 | **** ** k*
Solution
Bartleby Expert
SEE SOLUTION
Follow-up Question

thank you. base on the program above,  I want to add one more a method to calcute Mode base on the file.

please provide a screenshot of ur program once it's finished.

 

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning