Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 27, 2023 02:54 am GMT

how to find the frequency of characters in given string in java

Code:

import java.util.*;import java.lang.*;class Demo{    public static void main(String[] args){        String name = "idiot";        Map<Character,Integer> map = new HashMap<Character,Integer>();        for(int i=0;i<name.length();i++){            Character ch = name.charAt(i);            map.put(ch,map.getOrDefault(ch,0)+1);        }        System.out.println(map);        for(Map.Entry<Character,Integer> e : map.entrySet()){            System.out.println(e.getKey()+" "+e.getValue());        }    }   }

o/p:

Image description


Original Link: https://dev.to/realnamehidden1_61/program-to-find-the-frequency-of-characters-in-given-string-in-java-100o

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To