博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Strobogrammatic Number
阅读量:5310 次
发布时间:2019-06-14

本文共 2964 字,大约阅读时间需要 9 分钟。

Strobogrammatic Number I

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.

From:https://segmentfault.com/a/1190000003787462

翻转后对称的数就那么几个,我们可以根据这个建立一个映射关系:8->8, 0->0, 1->1, 6->9, 9->6,然后从两边向中间检查对应位置的两个字母是否有映射关系就行了。比如619,先判断6和9是有映射的,然后1和自己又是映射,所以是对称数。

1 public class Solution { 2     public boolean isStrobogrammatic(String num) { 3         for (int i = 0; i <= num.length() / 2; i++) { 4             char a = num.charAt(i); 5             char b = num.charAt(num.length() - 1 - i); 6             if (!isValid(a, b)) { 7                 return false; 8             } 9         }10         return true;11     }12     private boolean isValid(char c, char b) {13         switch (c) {14             case '1':15                 return b == '1';16             case '6':17                 return b == '9';18             case '9':19                 return b == '6';20             case '8':21                 return b == '8';22                 case '0':23                 return b == '0';24             default:25                 return false;26         }27     }28 }

Strobogrammatic Number II

From: http://www.cnblogs.com/grandyang/p/5200919.html

A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).

Find all strobogrammatic numbers that are of length = n.

For example, Given n = 2, return ["11","69","88","96"].

这道题是之前那道的拓展,那道题让我们判断一个数是否是对称数,而这道题让我们找出长度为n的所有的对称数,我们肯定不能一个数一个数的来判断,那样太不高效了,而且OJ肯定也不会答应。题目中给了提示说可以用递归来做,而且提示了递归调用n-2,而不是n-1。我们先来列举一下n为0,1,2,3,4的情况:

n = 0:   none

n = 1:   0, 1, 8

n = 2:   11, 69, 88, 96

n = 3:   101, 609, 808, 906, 111, 619, 818, 916, 181, 689, 888, 986

n = 4:   1001, 6009, 8008, 9006, 1111, 6119, 8118, 9116, 1691, 6699, 8698, 9696, 1881, 6889, 8888, 9886, 1961, 6969, 8968, 9966

我们注意观察n=0和n=2,可以发现后者是在前者的基础上,每个数字的左右增加了[1 1], [6 9], [8 8], [9 6],看n=1和n=3更加明显,在0的左右增加[1 1],变成了101, 在0的左右增加[6 9],变成了609, 在0的左右增加[8 8],变成了808, 在0的左右增加[9 6],变成了906, 然后在分别在1和8的左右两边加那四组数,我们实际上是从m=0层开始,一层一层往上加的,需要注意的是当加到了n层的时候,左右两边不能加[0 0],因为0不能出现在两位数及多位数的开头,在中间递归的过程中,需要有在数字左右两边各加上0的那种情况,参见代码如下:  

1 class Solution { 2 public: 3     vector
findStrobogrammatic(int n) { 4 return find(n, n); 5 } 6 vector
find(int m, int n) { 7 if (m == 0) return {
""}; 8 if (m == 1) return {
"0", "1", "8"}; 9 vector
t = find(m - 2, n), res;10 for (auto a : t) {11 if (m != n) res.push_back("0" + a + "0");12 res.push_back("1" + a + "1");13 res.push_back("6" + a + "9");14 res.push_back("8" + a + "8");15 res.push_back("9" + a + "6");16 }17 return res;18 }19 };

 

转载于:https://www.cnblogs.com/beiyeqingteng/p/5944509.html

你可能感兴趣的文章
【CF321E】+【bzoj5311】贞鱼
查看>>
慈溪中学摸底测试
查看>>
react---简易toast组件
查看>>
react--列表携带搜索条件到详情,详情回到列表要回显之前的搜索条件,然后刷新后搜索条件重置初始状态...
查看>>
react---简易展开收起组件
查看>>
es6----数组去重(简单类型和引用类型)
查看>>
typeof null ======》"object"
查看>>
javascript----是否下拉到页面底部
查看>>
git pull 拉取更新失败解决方案
查看>>
spring boot学习笔记(一)
查看>>
string长度问题
查看>>
小程序开发入门(一)
查看>>
git提交项目到已有库
查看>>
spring boot学习笔记(二)创建spring boot项目
查看>>
洛谷 P1505 BZOJ 2157 [国家集训队]旅游
查看>>
Codeforces 1213F Unstable String Sort
查看>>
HDU 6651 Final Exam
查看>>
CodeForces 1200D White Lines
查看>>
HDU 6656 Kejin Player
查看>>
Codeforces 1203F1 Complete the Projects (easy version)
查看>>