cKK

............当你觉得自己很辛苦,说明你正在走上坡路.............坚持做自己懒得做但是正确的事情,你就能得到别人想得到却得不到的东西............

导航

(String). Word Pattern

Posted on 2016-04-12 15:26  cKK  阅读(195)  评论(0编辑  收藏  举报

Given a pattern and a string str, find if str follows the same pattern.

Here follow means a full match, such that there is a bijection between a letter in pattern and a non-empty word in str.

Examples:

  1. pattern = "abba", str = "dog cat cat dog" should return true.
  2. pattern = "abba", str = "dog cat cat fish" should return false.
  3. pattern = "aaaa", str = "dog cat cat dog" should return false.
  4. pattern = "abba", str = "dog dog dog dog" should return false
    public class Solution {       //if不用hashmap,更好的方法是设置头尾“指针”,保证一个指向当前的值
        public boolean wordPattern(String pattern, String str) {
        String[] strs = str.split(" ");
    		if (pattern.length() != strs.length)
    			return false;
    		Map<Character, String> map = new HashMap<Character, String>();
    		for (int i = 0; i < pattern.length(); i++) {
    			if (map.containsKey(pattern.charAt(i))
    					&& !(map.get(pattern.charAt(i))).equals(strs[i]))
    				return false;
    			if (!map.containsKey(pattern.charAt(i))
    					&& map.containsValue(strs[i]))
    				return false;
    			if (!map.containsKey(pattern.charAt(i))
    					&& !map.containsValue(strs[i]))
    				map.put(pattern.charAt(i), strs[i]);
    		}
    		return true;
        }
    }