-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFrequenciesOfLimitedRangeArrayElements.java
47 lines (44 loc) · 1.61 KB
/
FrequenciesOfLimitedRangeArrayElements.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package SummerTrainingGFG.Arrays;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
/**
*@author Vishal Singh */
/*
* Given an array A[] of N positive integers which can contain integers from 1 to N
* where elements can be repeated or can be absent from the array.
* Your task is to count the frequency of all elements from 1 to N.*/
public class FrequenciesOfLimitedRangeArrayElements {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(br.readLine());
while (t-- > 0) {
int n = Integer.parseInt(br.readLine());
String[] str = br.readLine().split(" ");
int[] arr = new int[n];
int[] temp = new int[n];
for (int i = 0; i < n; i++) {
arr[i] = Integer.parseInt(str[i]);
temp[i] = 0;
}
for (int i = 0; i < n; i++) {
temp[arr[i]-1] = temp[arr[i]-1]+1;
}
for (int i = 0; i < n; i++) {
System.out.print(temp[i]+" ");
}
/* USING ARRAY LIST */
ArrayList<Integer> a= new ArrayList<Integer>(n);
for (int i = 0; i < n ; i++) {
a.add(0);
}
for (int i = 0; i < n ; i++) {
int index = arr[i] -1;
int element = a.get(index)+1;
a.set(index,element);
}
System.out.println(a);
}
}
}