[Swift]LeetCode233. 数字1的个数 | Number of Digit One
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10204847.html
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n.
Example:
Input: 13 Output: 6 Explanation: Digit 1 occurred in the following numbers: 1, 10, 11, 12, 13.
给定一个整数 n,计算所有小于等于 n 的非负整数中数字 1 出现的个数。
示例:
输入: 13 输出: 6 解释: 数字 1 出现在以下数字中: 1, 10, 11, 12, 13 。
8ms
1 class Solution { 2 func countDigitOne(_ n: Int) -> Int { 3 var n = n 4 var rest = 0 5 var base = 1 6 var count = 0 7 8 while n > 0 { 9 let digit = n % 10 10 n = n/10 11 count += n * base 12 switch digit { 13 case 0: () 14 case 1: count += rest + 1 15 default: count += base 16 } 17 rest = digit * base + rest 18 base *= 10 19 } 20 return count 21 } 22 }
8ms
1 class Solution { 2 func countDigitOne(_ n: Int) -> Int { 3 var num = n 4 var res = 0 5 var multiply = 1 6 var remainder = 0 7 while num > 0 { 8 let val = num % 10 9 10 if val <= 1 { 11 res += (num / 10) * multiply 12 if val == 1 { 13 res += remainder + 1 14 } 15 } 16 else { 17 res += (num / 10 + 1) * multiply 18 } 19 20 multiply *= 10 21 remainder = n % multiply 22 num /= 10 23 } 24 25 return res 26 } 27 }
12ms
1 class Solution { 2 func countDigitOne(_ n: Int) -> Int { 3 if n <= 0 { return 0 } 4 5 let digitCount = Int(log2(Double(n))/log2(10))+1 6 var count = 0 7 for i in 0..<digitCount { 8 let base = Int(pow(10, Double(i))) 9 let nextBase = base * 10 10 let currentDigit = n/base % 10 11 12 count += (n/nextBase) * base 13 14 if currentDigit == 0 { 15 count += 0 16 } else if currentDigit == 1 { 17 count += n % base + 1 18 } else { 19 count += base 20 } 21 } 22 return count 23 } 24 }
36ms
1 class Solution { 2 func countDigitOne(_ n: Int) -> Int { 3 if n <= 0 { 4 return 0 5 } 6 7 if n < 10 { 8 return 1 9 } 10 11 var m = n 12 var l = 0 13 var c = 1 14 while m != 0 { 15 l = m % 10 16 m /= 10 17 c *= 10 18 } 19 c /= 10 20 let k = l * c 21 22 if l == 1 { 23 return n - k + 1 + countDigitOne(n-k) + countDigitOne(c-1) 24 }else { 25 return countDigitOne(2 * c - 1) + (l - 2)*countDigitOne(c-1) + countDigitOne(n-k) 26 } 27 } 28 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了