A string of charaters were given. Find the highest
occurance of a character and display that character.
eg.: INPUT: AEGBCNAVNEETGUPTAEDAGPE
Answer Posted / arpita
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;
public class TestClass1 {
public static void main(String[] args) {
HashMap<Character, Integer> hm = new HashMap<Character,
Integer>();
String str = "AABBBCCZX";
if (str != null) {
char[] charArray = str.toCharArray();
for (char ch : charArray) {
int counter = 0;
for (int j = 0; j < charArray.length; j++) {
if (ch == charArray[j]) {
counter = counter + 1;
}
}
hm.put(ch, counter);
}
Set<Character> s = hm.keySet();
Iterator<Character> itr = s.iterator();
while (itr.hasNext()) {
char key = (char) itr.next();
System.out.println("Character : " + key + " Occurence : "
+ hm.get(key));
}
}
}
}
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Difference between views and index in sas programming
it is a language or tools?
i am exeprienced person what is selection process
How do you pass variables forwrd to future CECI sessions
What are the tasks performed by a Team Lead
write the a cl program with the following specification A. Accept 2 parameters-date and date type B. if date type is J then convert date to *MDY format C. if date type is M convert date to *JUL format 4.send a program message with the value of converted date Please explain for each with coding?
what is meant by life cycle of a business
what is d main diff between the java and .net framework
Write a shell program. Enter number of days from keyboard. Find out the number of years, month and days it contains
how CLR identify vb file?
I want Ada programming language books. Could anyone post me any link for that?
WHat is execution in manual testing and when will we start execution and what language we use in execution
when will triggars the at new event in abap and web dybn pro?
how do we provide security for web services
Write a program to show polymorphism.