回复: 1
跳转到指定楼层
上一主题 下一主题
收起左侧

Twitter OA test7

全局:

2018(1-3月) 码农类General 本科 全职@twitter - 网上海投 - 在线笔试  | | Other | 应届毕业生

注册一亩三分地论坛,查看更多干货!

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x
刚做完test7,三题:
  • investment SQL。地里和 stack overflow 都有答案
  • twitter recommend
  • time seri
    您好!
    本帖隐藏的内容需要积分高于 188 才可浏览
    您当前积分为 0。
    使用VIP即刻解锁阅读权限或查看其他获取积分的方式
    游客,您好!
    本帖隐藏的内容需要积分高于 188 才可浏览
    您当前积分为 0。
    VIP即刻解锁阅读权限查看其他获取积分的方式
    Unlock interview details and practice with AI
    Curated Interview Questions from Top Companies
    st。都过了。鉴于有人第三题有test没过,我把代码粘一下。大家相互交流哈,做的时候别直接copy&paste就好啦。
    1. using namespace std;

    2. map<string, map<string, int>, greater<string> > records;
    3. string startMonth, endMonth;
    4. string date, type;
    5. int num;

    6. string removeComma(string str){
    7.     return str.substr(0, str.length()-1);
    8. }

    9. string getMonth(string date) {
    10.     return date.substr(0, date.length()-3);
    11. }

    12. void addRecord(string date, string type, int num) {
    13.     string month = getMonth(date);
    14.     records[month][type] += num;
    15. }

    16. void searchRange(){
    17.     map<string, map<string, int> >::iterator startIter, endIter;

    18.     startIter = records.upper_bound(endMonth);
    19.     endIter = records.upper_bound(startMonth);

    20.     for(auto i = startIter; i != endIter; i++) {
    21.         cout << i->first;
    22.         for(auto j = i->second.begin(); j != i->second.end(); j++) {
    23.             cout << ", " << j->first << ", " << j->second;
    24.         }
    25.         cout << endl;
    26.     }
    27. }

    28. int main() {
    29.     cin>>startMonth>>endMonth;
    30.     startMonth = removeComma(startMonth);

    31.     while(cin>>date) {
    32.         date = removeComma(date);
    33.         cin>>type;
    34.         type = removeComma(type);
    35.         cin>>num;
    36.         addRecord(date, type, num);
    37.     }

    38.     searchRange();
    39.     return 0;
    40. }
    复制代码

评分

参与人数 2大米 +6 收起 理由
天遥 + 3 给你点个赞!
cser017 + 3 感谢分享!

查看全部评分


上一篇:linkedin onsite - 前端 (software engineer: frontend + ui)
下一篇:请问~有没有面yelp的skype 遇到叫Jeffrey的面试官
🔗
shu16 2017-11-26 10:33:22 | 只看该作者
全局:
谢谢楼主~
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表