TopCode_TCCC '01 Round 2_Level One_StringDup
3078 단어 데이터 구조
Problem Statement
Create a class called StringDup. Given a string made up of ONLY letters and
digits, determine which character is repeated the most in the string ('A' is
different than 'a'). If there is a tie, the character which appears first in
the string (from left to right) should be returned.
Examples :
aaiicccnn = c
aabbccdd = a
ab2sbf2dj2skl = 2
Here is the method signature :
public char getMax(String input);
We will check to make sure that the input contains only letters and digits (no
punctuation marks or spaces).
Definition
Class:StringDup
Method:getMax
Parameters:String
Returns:char
Method signature:char getMax(String param0)
(be sure your method is public)
대충 번역 해 주세요.
StringDup 이라는 클래스 이름 을 만 듭 니 다.알파벳 과 숫자 로 만 구 성 된 문자열 을 지정 하여 그 문자 가 가장 많이 중복 되 는 것 을 판정 합 니 다 (대소 문자 가 다 릅 니 다).하면, 만약, 만약...
이러한 관계 가 있 습 니 다: 이 문 자 는 문자열 에 처음 나타 나 서 되 돌려 야 합 니 다.
테스트 데이터:
aabbccdd = a
ab2sbf2dj2skl = 2
자신 이 쓴:
/**
* O(n2)
* */
public char getMax(String input) {
//
char[] charArr = input.toCharArray();
//
int temp = 0;
//
char tempChar = ' ';
for (int i = 0; i < charArr.length; i++) {
// 0 。
int count = 0;
for (int j = i; j < charArr.length; j++) {
// , 1
if (charArr[j] == charArr[i]) {
count++;
}
// , 。 charArr[i]
if (count > temp) {
temp = count;
tempChar = charArr[i];
}
}
}
return tempChar;
}
그러나 시간 복잡 도 는 O (n2) 이다.
나중에 인터넷 에 또 다른 표기 법 이 있 는 것 을 보 았 는데 시간 복잡 도가 약간 낮 았 다.
/**
* O(n)
* */
public char getMax(String input) {
// , key, value
char[] alph = input.toCharArray();
Map<Character, Integer> aa = new HashMap<Character, Integer>();
for (Character c : alph) {
if (Character.isWhitespace(c))
continue;
if (aa.containsKey(c) == false) {
aa.put(c, 1);
} else {
aa.put(c, aa.get(c) + 1);
}
}
//
Set<Character> set = aa.keySet();
Iterator iter = set.iterator();
Integer count = 0;
Character key = new Character(' ');
while (iter.hasNext()) {
Character ccc = (Character) iter.next();
if (aa.get(ccc) > count) {
count = aa.get(ccc);
key = ccc;
}
}
return key;
}
하지만 aabbccdd 의 상황 은 해결 되 지 않 았 습 니 다.두 번 째 방법 으로aa 대신 dd 로 돌 아 왔 습 니 다.
위의 문 제 는 확장 할 수 있 습 니 다.
다른 문자열 에 나타 난 문자열 의 횟수 를 판단 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.