首页 > 其他 > 详细

246. Strobogrammatic Number

时间:2016-10-16 09:34:47      阅读:186      评论:0      收藏:0      [点我收藏+]

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.246. Strobogrammatic Number

 

public class Solution {
    public boolean isStrobogrammatic(String nums) {
        // 6 - > 9 , 9 - > 6 , 1 - > 1, 8 - > 8, 0 -> 0
        int array[] = {0, 1, 0, 0, 0, 0 ,9, 0, 8, 6};
        String res = "";
        for(int i = nums.length() - 1 ; i >= 0; i--){
            if(nums.charAt(i) - ‘0‘ >= 0 && nums.charAt(i) - ‘0‘ <= 9 ){
                res = res + array[nums.charAt(i) - ‘0‘] ;
            }
            else
                return false;
        }
        return res.equals(nums);
    } 
    
    //2 pointer O(n/2) ---method 2
    public boolean isStrobogrammatic(String nums) {
        int i = 0;
        int j = nums.length() - 1;
        while(i <= j){
           if(isPair(nums.charAt(i), nums.charAt(j))){
               i++;
               j--;
           }
           else return false;
        }
        return true;
    }
    public boolean isPair(char num1 , char num2){
        if(num1 == ‘6‘ && num2 == ‘9‘ ||
        num1 == ‘9‘ && num2 == ‘6‘ || 
        num1 == ‘8‘ && num2 == ‘8‘ ||
        num1 == ‘1‘ && num2 == ‘1‘||
        num1 == ‘0‘ && num2 == ‘0‘)  
            return true;
        else
            return false;
    }
}

 

246. Strobogrammatic Number

原文:http://www.cnblogs.com/joannacode/p/5965885.html

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