前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0273 - Integer to English Words

LeetCode 0273 - Integer to English Words

作者头像
Reck Zhang
发布2021-08-11 11:46:13
1880
发布2021-08-11 11:46:13
举报
文章被收录于专栏:Reck Zhang

Integer to English Words

Desicription

Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 2^31 - 1.

Example 1:

代码语言:javascript
复制
Input: 123
Output: "One Hundred Twenty Three"

Example 2:

代码语言:javascript
复制
Input: 12345
Output: "Twelve Thousand Three Hundred Forty Five"

Example 3:

代码语言:javascript
复制
Input: 1234567
Output: "One Million Two Hundred Thirty Four Thousand Five Hundred Sixty Seven"

Example 4:

代码语言:javascript
复制
Input: 1234567891
Output: "One Billion Two Hundred Thirty Four Million Five Hundred Sixty Seven Thousand Eight Hundred Ninety One"

Solution

代码语言:javascript
复制
class Solution {
private:
    const vector<string> one_to_nineteen = {
            "",
            "One",
            "Two",
            "Three",
            "Four",
            "Five",
            "Six",
            "Seven",
            "Eight",
            "Nine",
            "Ten",
            "Eleven",
            "Twelve",
            "Thirteen",
            "Fourteen",
            "Fifteen",
            "Sixteen",
            "Seventeen",
            "Eighteen",
            "Nineteen"
    };

    const vector<string> twenty_to_ninety = {
            "",
            "",
            "Twenty",
            "Thirty",
            "Forty",
            "Fifty",
            "Sixty",
            "Seventy",
            "Eighty",
            "Ninety"
    };

    string get_words(int num) {
        if(num >= (int)1e9) {
            return get_words(num / (int)1e9) + " Billion" + get_words(num % (int)1e9);
        } else if(num >= (int)1e6) {
            return get_words(num / (int)1e6) + " Million" + get_words(num % (int)1e6);
        } else if(num >= (int)1e3) {
            return get_words(num / (int)1e3) + " Thousand" + get_words(num % (int)1e3);
        } else if(num >= (int)1e2) {
            return get_words(num / (int)1e2) + " Hundred" + get_words(num % (int)1e2);
        } else if(num >= 20) {
            return string(" ") + twenty_to_ninety[num / 10] + get_words(num % 10);
        } else if(num >= 1) {
            return string(" ") + one_to_nineteen[num];
        } else {
            return string("");
        }
    }

public:
    string numberToWords(int num) {
        if(num == 0) {
            return "Zero";
        } else {
            return get_words(num).substr(1);
        }
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-12-15,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Integer to English Words
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档