首页 > 作文

C++ Leetcode实现从英文中重建数字

更新时间:2023-04-03 22:58:48 阅读: 评论:0

目录
题目分析代码

题目

分析

首先我们先分析每个字母的组成,然后发现一些字符只在一个单词中出现,我们先去统计一下这些单词个数。

z,w,u,x,g都只出现在一个数字中,也就是0,2,4,6,8,我们用哈希表统计一下s字符串中各个字符的数量,就可以知道0,2,4,6,8的数量,然后我们注意一下只在两个数字中出现的字符。

h 只在 3,8 中出现。由于我们已经知道了 8 出现的次数,因此可以计算出 3 出现的次数。f 只在 4,5 中出现。由于我们已经知道了 4 出现的次数,因此可以计算出 5 出现的次数。s 只在 6,7 中出现。由于我们已经知道了 6 出现的次数,因此可以计算出 7 出现的次数。

此时,只剩下1和9还不知道,但是字符含有o的其他数字我们都已经知道了,那么剩下的数量就是1的数量。

然后此时含有i的就只有9了,统计一下9的数量即可。

统计完次数,按升序排列即可。

代码

c++

我的代码

class solution白痴猜一字 {public:    string originaldigits(string s) {        unordered_map<char, int> m;        string nums[10] = {"zero", "one", "two", "three", "four", "five", "six", "ven", "eight", "nine"};        string res;                for(char ch : s) m[ch]++;        // 0        if(m['z'] > 0)        {            for(int i=0 ; i<m['z'] ; i++) res += '0';            int x = m['z'];            m['z'] -= x;            m['e'] -= x;            m['r'] -= x;            m['o'] -= x;        }        // 2        if(m['w'] > 0)        {            int x = m['w'];            for(int i=0 ; i<x ; i南戴河++) res += '2';            m['t'] -= x;            m['w'] -= x;            m['o'] -= x;        }        // 4        if(m['u'] > 0)        {            int x = m['u'];            for(int i=0 ; i<x ; i++) res += '4';            m['f'] -= x;            m['o'] -= x;            m['u'] -= x;            m['r'] -= x;        }        // 5        if(m['f'] > 0)        {            int x = m['f'];            for(int i=0 ; i<x ; i++) res += '5';            m['f'] -= x;            m['i'] -= x;            m['v'] -= x;            m['e'] -= x;        }        // 6        if(m['x'] > 0)        {            int x = m['x'];            for(int i=0 ; i<x ; i++) res += '6';       酸菜鱼的做法家常做法     m['s'] -= x;            m['i'] -= x;            m['x'] -= x;        }        // 7        if(m['s'] > 0)        {            int x = m['s'];            for(int i=0 ; i<x ; i++) res += '7';            m['s'解除劳动合同协议] -= x;            m['e'] -= x;            m['v'] -= x;            m['e'] -= x;            m['n'] -= x;        }        // 8        if(m['g'] > 0)        {            int x = m['g'];            for(int i=0 ; i<x ; i++) res += '8';            m['e'] -= x;            m['i'] -= x;            m['g'] -= x;            m['h'] -= x;            m['t'] -= x;        }        // 1        if(m['o'] > 0)        {            int x = m['o'];            for(int i=0 ; i<x ; i++) res += '1';            m['o'] -= x;            m['n'] -= x;            m['e'] -= x;        }        // 3        if(m['t'] > 0)        {            int x = m['t'];            for(int i=0 ; i<x ; i++) res += '3';            m['t'] -= x;            m['h'] -= x;            m['r'] -= x;            m['e'] -= x;            m['e'] -= x;        }        // 9        if(m['i'] > 0)        {            int x = m['i'];            for(int i=0 ; i<x ; i++) res += '9';            m['n'] -= x;            m['i'] -= x;            m['n'] -= x;            m['e'] -= x;        }        sort(res.begin(), res.end());        return res;    }};

c++

官方题解

class solution 福州涌泉寺{public:    string originaldigits(string s) {        unordered_map<char, int> c;        for (char ch: s) {            ++c[ch];        }        vector<int> cnt(10);        cnt[0] = c['z'];        cnt[2] = c['w'];        cnt[4] = c['u'];        cnt[6] = c['x'];        cnt[8] = c['g'];        cnt[3] = c['h'] - cnt[8];        cnt[5] = c['f'] - cnt[4];        cnt[7] = c['s'] - cnt[6];        cnt[1] = c['o'] - cnt[0] - cnt[2] - cnt[4];        cnt[9] = c['i'] - cnt[5] - cnt[6] - cnt[8];        string ans;        for (int i = 0; i < 10; ++i) {            for (int j = 0; j < cnt[i]; ++j) {                ans += char(i + '0');            }        }        return ans;    }};

java

class solution {    public string originaldigits(string s) {        map<character, integer> c = new hashmap<character, integer>();        for (int i = 0; i < s.length(); ++i) {            char ch = s.charat(i);            c.put(ch, c.getordefault(ch, 0) + 1);        }        int[] cnt = new int[10];        cnt[0] = c.getordefault('z', 0);        cnt[2] = c.getordefault('w', 0);        cnt[4] = c.getordefault('u', 0);        cnt[6] = c.getordefault('x', 0);        cnt[8] = c.getordefault('g', 0);        cnt[3] = c.getordefault('h', 0) - cnt[8];        cnt[5] = c.getordefault('f', 0) - cnt[4];        cnt[7] = c.getordefault('s', 0) - cnt[6];        cnt[1] = c.getordefault('o', 0) - cnt[0] - cnt[2] - cnt[4];        cnt[9] = c.getordefault('i', 0) - cnt[5] - cnt[6] - cnt[8];        stringbuffer ans = new stringbuffer();        for (int i = 0; i < 10; ++i) {            for (int j = 0; j < cnt[i]; ++j) {                ans.append((char) (i + '0'));            }        }        return ans.tostring();    }} 

以上就是c++ leetcode实现从英文中重建数字的详细内容,更多关于c++ leetcode 英文中重建数字的资料请关注www.887551.com其它相关文章!

本文发布于:2023-04-03 22:58:46,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/0cb7d8acbb25e4f17e2ea841d29b152a.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:C++ Leetcode实现从英文中重建数字.doc

本文 PDF 下载地址:C++ Leetcode实现从英文中重建数字.pdf

标签:只在   次数   数量   数字
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图