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

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

The idea is similar to Strobogrammatic Number II: generate all those in-range strobogrammatic numbers and count.

You may refer to for a very readable code, which I have rewritten in C++ below.

1 class Solution { 2 public: 3     Solution() { 4         mp = {
{
'0', '0'}, {
'1', '1'}, {
'6', '9'}, {
'8', '8'}, {
'9', '6'}}; 5 } 6 7 int strobogrammaticInRange(string low, string high) { 8 int ans = 0, l = low.length(), u = high.length(); 9 for (int i = l; i <= u; i++) {10 string temp(i, ' ');11 strobogrammaticCount(temp, ans, low, high, 0, i - 1);12 }13 return ans;14 }15 private:16 unordered_map
mp;17 void strobogrammaticCount(string temp, int& ans, string& low, string& high, int lo, int hi) {18 if (lo > hi) {19 if ((temp[0] != '0' || temp.length() == 1) && less(low, temp) && less(temp, high))20 ans++;21 return;22 }23 for (auto m : mp) {24 temp[lo] = m.first;25 temp[hi] = m.second;26 if ((lo == hi && m.first == m.second) || lo < hi)27 strobogrammaticCount(temp, ans, low, high, lo + 1, hi - 1);28 }29 }30 bool less(string& s, string& t) {31 int m = s.length(), n = t.length(), i;32 if (m != n) return m < n;33 for (i = 0; i < m; i++)34 if (s[i] == t[i]) continue;35 else break;36 return i == m || s[i] < t[i];37 }38 };

 

转载地址:http://dagja.baihongyu.com/

你可能感兴趣的文章
将String转化成Stream,将Stream转换成String
查看>>
java路径Java开发中获得非Web项目的当前项目路径
查看>>
【工具使用系列】关于 MATLAB 遗传算法与直接搜索工具箱,你需要知道的事
查看>>
Kali-linux Arpspoof工具
查看>>
PDF文档页面如何重新排版?
查看>>
基于http协议使用protobuf进行前后端交互
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
弃 Java 而使用 Kotlin 的你后悔了吗?| kotlin将会是最好的开发语言
查看>>
JavaScript 数据类型
查看>>
量子通信和大数据最有市场突破前景
查看>>
StringBuilder用法小结
查看>>
对‘初学者应该选择哪种编程语言’的回答——计算机达人成长之路(38)
查看>>
如何申请开通微信多客服功能
查看>>
Sr_C++_Engineer_(LBS_Engine@Global Map Dept.)
查看>>
非监督学习算法:异常检测
查看>>
App开发中甲乙方冲突会闹出啥后果?H5 APP 开发可以改变现状吗
查看>>
jquery的checkbox,radio,select等方法总结
查看>>
Linux coredump
查看>>