首页 > 代码库 > 288. Unique Word Abbreviation
288. Unique Word Abbreviation
An abbreviation of a word follows the form <first letter><number><last letter>. Below are some examples of word abbreviations:
a) it --> it (no abbreviation) 1 b) d|o|g --> d1g 1 1 1 1---5----0----5--8 c) i|nternationalizatio|n --> i18n 1 1---5----0 d) l|ocalizatio|n --> l10n
Assume you have a dictionary and given a word, find whether its abbreviation is unique in the dictionary. A word‘s abbreviation is unique if no otherword from the dictionary has the same abbreviation.
Example:
Given dictionary = [ "deer", "door", "cake", "card" ]
isUnique("dear") -> false
isUnique("cart") -> true
isUnique("cane") -> false
isUnique("make") -> true
注意
dic = [”hello“] word = “hello” isunique
public class ValidWordAbbr { HashMap<String, String> set; public ValidWordAbbr(String[] dictionary) { set = new HashMap<String, String>(); for(int i = 0 ; i < dictionary.length; i++){ String temp = dictionary[i]; if(set.containsKey(getKey(temp)) && !set.get(getKey(temp)).equals(temp)) set.put(getKey(temp) , ""); else set.put(getKey(temp) , temp); } } public String getKey(String s){ if(s.length() <= 2) return s; else{ return s.charAt(0)+Integer.toString(s.length()-2)+s.charAt(s.length()-1); } } public boolean isUnique(String word) { if(set.containsKey(getKey(word))){ return set.get(getKey(word)).equals(word); } else return true; } } // Your ValidWordAbbr object will be instantiated and called as such: // ValidWordAbbr vwa = new ValidWordAbbr(dictionary); // vwa.isUnique("Word"); // vwa.isUnique("anotherWord");
288. Unique Word Abbreviation
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。