首页 > 其他 > 详细

246.Strobogrammatic Number

时间:2016-06-19 08:54:55      阅读:226      评论:0      收藏:0      [点我收藏+]
    /*
     * 246.Strobogrammatic Number
     * 2016-6-18 by Mingyang
     * A strobogrammatic number is a number that looks the same when rotated 180 degrees 
     * (looked at upside down).
     * Write a function to determine if a number is strobogrammatic. 
     * The number is represented as a string.
     * For example, the numbers "69", "88", and "818" are all strobogrammatic.
     * 我开始做没想到用hashmap,这么会使代码非常简单
     */
      public boolean isStrobogrammatic(String num) {
            HashMap<Character, Character> map = new HashMap<Character, Character>();
            map.put(‘1‘,‘1‘);
            map.put(‘0‘,‘0‘);
            map.put(‘6‘,‘9‘);
            map.put(‘9‘,‘6‘);
            map.put(‘8‘,‘8‘);
            int left = 0, right = num.length() - 1;
            while(left <= right){
                // 如果字母不存在映射或映射不对,则返回假
                if(!map.containsKey(num.charAt(right)) || num.charAt(left) != map.get(num.charAt(right))){
                    return false;
                }
                left++;
                right--;
            }
            return true;
        }

 

246.Strobogrammatic Number

原文:http://www.cnblogs.com/zmyvszk/p/5597374.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!