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 로 돌 아 왔 습 니 다.
 
위의 문 제 는 확장 할 수 있 습 니 다.
다른 문자열 에 나타 난 문자열 의 횟수 를 판단 합 니 다.
 

좋은 웹페이지 즐겨찾기