246:中心对称数

This commit is contained in:
轩辕龙儿 2022-03-25 23:14:23 +08:00
parent e5d34bd3ea
commit e5b6dea383
2 changed files with 109 additions and 0 deletions

View File

@ -0,0 +1,81 @@
//中心对称数是指一个数字在旋转了 180 度之后看起来依旧相同的数字或者上下颠倒地看
//
// 请写一个函数来判断该数字是否是中心对称数其输入将会以一个字符串的形式来表达数字
//
//
//
// 示例 1:
//
// 输入: num = "69"
//输出: true
//
//
// 示例 2:
//
// 输入: num = "88"
//输出: true
//
// 示例 3:
//
// 输入: num = "962"
//输出: false
//
// 示例 4
//
// 输入num = "1"
//输出true
//
// Related Topics 哈希表 双指针 字符串 👍 40 👎 0
package leetcode.editor.cn;
import java.util.ArrayList;
import java.util.List;
//246:中心对称数
public class StrobogrammaticNumber {
public static void main(String[] args) {
Solution solution = new StrobogrammaticNumber().new Solution();
solution.isStrobogrammatic("69");
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean isStrobogrammatic(String num) {
List<Character> list = new ArrayList<>();
list.add('2');
list.add('3');
list.add('4');
list.add('5');
list.add('7');
for (Character character : list) {
if (num.contains("" + character)) {
return false;
}
}
int mid = (num.length() + 1) / 2;
for (int i = 0; i < mid; i++) {
if (num.length() % 2 == 1 && i == mid - 1) {
if (num.charAt(i) != '1' && num.charAt(i) != '0' && num.charAt(i) != '8') {
return false;
}
}
char ch = num.charAt(i);
if (ch == '0' || ch == '1' || ch == '8') {
if (num.charAt(num.length() - 1 - i) != ch) {
return false;
}
}
if (ch == '6' && num.charAt(num.length() - 1 - i) != '9') {
return false;
}
if (ch == '9' && num.charAt(num.length() - 1 - i) != '6') {
return false;
}
}
return true;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,28 @@
<p>中心对称数是指一个数字在旋转了&nbsp;180 度之后看起来依旧相同的数字(或者上下颠倒地看)。</p>
<p>请写一个函数来判断该数字是否是中心对称数,其输入将会以一个字符串的形式来表达数字。</p>
<p>&nbsp;</p>
<p><strong>示例 1:</strong></p>
<pre><strong>输入:</strong> num = &quot;69&quot;
<strong>输出:</strong> true
</pre>
<p><strong>示例 2:</strong></p>
<pre><strong>输入:</strong> num = &quot;88&quot;
<strong>输出:</strong> true</pre>
<p><strong>示例 3:</strong></p>
<pre><strong>输入:</strong> num = &quot;962&quot;
<strong>输出:</strong> false</pre>
<p><strong>示例 4</strong></p>
<pre><strong>输入:</strong>num = &quot;1&quot;
<strong>输出:</strong>true
</pre>
<div><div>Related Topics</div><div><li>哈希表</li><li>双指针</li><li>字符串</li></div></div><br><div><li>👍 40</li><li>👎 0</li></div>