3

我有一个 int 数组:

{1,2,4,2,3,5,6,4,3}

如何找到数组元素的频率,如1=1,2=2,3=2,4=4... 我需要一个类,我可以将我的数组传递给它并返回一个数组,该数组给出数组元素的计数。例如:-(array{[0]=1,[1]=2,[2]=3,[3]=4..}对于上面的示例数组);

4

11 回答 11

8
class MapTest
{
    public static void main(String args[]){
        HashMap<Integer,Integer> h = new HashMap<Integer,Integer>();
        int arr[] = new int[]{2,2,3,3,5,6,7,9,9,0};
        for(int i=0; i<arr.length; i++){
            if(h.containsKey(arr[i])){
                h.put(arr[i], h.get(arr[i]) + 1);
            } else {
                h.put(arr[i], 1);
            }
        }
        System.out.println(h);
    }
}
于 2015-08-27T08:24:15.840 回答
5

在 Java 8 中,您可以这样做

Map<Integer, Long> freq = Arrays.stream(array).boxed().
                collect(Collectors.groupingBy(Integer::intValue, Collectors.counting()));
于 2014-05-12T01:03:45.673 回答
3

你必须做几件事:

  1. 定义数字范围的上限和下限。
  2. 建立一个方便的对象/数据结构来存储这些数字的出现。
  3. 遍历传入的数组并计算每个数字的所有出现次数,将结果存储在方便的对象/数据结构中。

如果这以一种简单的方式完成,则可能只是从传入的数组中读取元素并打印出最终结果的问题。

于 2012-08-31T00:50:18.113 回答
2

如果指定数组元素的范围并限制为数组大小,最好的解决方案是使用哈希映射。T(n) = O(n),辅助空间 = O(n)。

public static void findCount3(int[] a){
    Map<Integer, Integer> hm = new HashMap<Integer, Integer>();     
    for(int i = 0; i < a.length; i++){
            if(!hm.containsKey(a[i])){
               hm.put(a[i], 1);
            }else{
               hm.put(a[i], hm.get(a[i])+1);
    }               
    System.out.println(hm);         
}
于 2015-08-01T09:47:40.247 回答
2

使用 Java-8,我们可以在一行中找到数组的频率。

Map<Integer, Long> freq = Arrays.stream(a).boxed().
                          collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));

另外,由于问题要求我们需要返回一个数组

public Object[] getFrequencies(int[] a) {
    Map<Integer, Long> freq = Arrays.stream(a).boxed().collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
    return freq.entrySet().toArray();
}
于 2019-11-21T16:08:29.613 回答
2
import java.util.*;
class Findfreqarray
{
    public static void main(String args[])
    {
        int t, i, j, len, count=0;
        Scanner in = new Scanner(System.in);
        System.out.println("Enter number of elements to insert in an array: ");
        len = in.nextInt();
        int[] arr = new int[len];
        System.out.println("Enter elements to insert in an array: ");
        for(i=0;i<len;i++)
        {
            t = in.nextInt();
            arr[i] = t;
        }
        System.out.println("\n");
        for(i=0;i<len;i++)
        {
            count=1;
            for(j=i+1;j<=len-1;j++)
            {
                if(arr[i]==arr[j] && arr[i]!='\0')
                {
                    count++;
                    arr[j] = '\0';
                }
            }
            if(arr[i]!='\0')
            {
                System.out.println(arr[i] + " is " + count + " times.\n");
            }
        }        
    }
}
于 2016-01-05T13:18:56.767 回答
1

我有一个计算java数组中元素频率的解决方案

import java.io.BufferedReader;

import java.io.InputStreamReader;

public class ItemCount {

public static void main(String[] args)
{
    try{
            int count=1,index=1;
            BufferedReader  br=new BufferedReader(new InputStreamReader(System.in));
            System.out.print("Enter the Size of array : ");
            int size=Integer.parseInt(br.readLine());
            System.out.print("Enter the Elements of array : ");
            int arr[]=new int[size];

            for(int i=0;i<arr.length;i++)
            {
                System.out.print("arr["+i+"] :  ");
                arr[i]=Integer.parseInt(br.readLine());
            }
            System.out.print("Sorted Array is :");
            SortingArray.sortDescendind(arr);

            for(int i=0;i<arr.length;i++)
            {
                System.out.println("arr["+i+"] :  "+arr[i]);

            }

            for(int i=0;i<arr.length;)
            {
                count=1;
                for(index=i+1;index<arr.length;index++)
                {
                    if(arr[i]==arr[index])
                    {
                        count++;
                    }
                    else{

                        break;
                    }


                }
                System.out.println(""+arr[i] +"----> "+count);
                i+=count;

            }

    }catch(Exception ex)
    {
        ex.printStackTrace();
    }
}

}

/// 可以为数组选择任意排序方式---->SortingArray.sortDescendind(arr)

于 2012-11-24T16:37:22.550 回答
1

在这里不放弃它是一个很好的起点:

int[] array = {1,2,4,2,3,5,6,4,3};

        public int[] (array){
            //need to perform a sort...or a search
            //after searching check for matches,
            //sorting could make performing comparisons more efficient
            //not all searches/sorts are created equal.

            int[array.length] result += {"["+numberChecked+"]="+freqOccurred};
            return result;
        }

此代码尚未编译,因此更多地将其视为伪代码。目的是让您思考如何实现预期目标。可能已经存在一个可以检查数组中频率元素的 java 包,但这是您最有可能寻找的。祝你好运。

于 2012-08-31T05:44:10.553 回答
1

您可以计算 HashMap<Element,Frequency> 中每个元素的频率。

Map<Integer,Integer> h = new HashMap<>();
int arr[] = new int[]{2,2,3,3,5,6,7,9,9,0};

for(int elem:arr) {
  h.merge(elem, 1, Integer::sum);
}

Hashmap.merge() 允许您指定如何更新哈希图中的值。如果 elem 没有现有值,则类似于 h.put(elem, 1)。如果存在一个名为 oldFreq 的值,它将用 Integer.sum(oldFreq, 1) 替换它

于 2021-01-03T13:49:58.520 回答
0
Map<Integer, Integer> map = new HashMap<>();
int arr[] = new int[]{2, 2, 3, 3, 4, 5, 6, 7, 9, 9, 0, 4, 2};

for (int i = 0; i < arr.length; i++) {
    Integer count = map.getOrDefault(arr[i], 0);
    map.put(arr[i], count + 1);
}

//Print the map to see the occurrence
map.forEach((key, value) -> {
    System.out.println(key + " -> " + value);
});
于 2018-12-03T06:36:01.223 回答
0
package practice.learning;

import java.util.Arrays;
public class FreqElem {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        String[] names= {"Pawan","Rohan","Sudesh","Pawan","Shiv"};

        for(int i=0;i<names.length;i++) {
            int count=0;
            //System.out.print(names[i]);
            String a=names[i];
            for(int j=0;j<names.length;j++) {
                if(names[j]==a) {
                    count+=1;
                }
                
                
            }
            System.out.println(names[i]+":"+count); 
        }
        
    }

}

输出: Pawan:2 Rohan:1 Sudesh:1 Pawan:2 Shiv:1

于 2022-01-31T10:08:46.337 回答