题解 | #坐标移动#

坐标移动

https://www.nowcoder.com/practice/119bcca3befb405fbe58abe9c532eb29

#include <iostream>
#include <string>
#include <cctype>
#include <vector>
using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::vector;

class Point {
public:
    Point(int x, int y)
        : _x(x), _y(y)
    {}

    void print() {
        cout << _x << "," << _y << endl;
    }

    Point remove_function(char ch, int num) {
        switch (ch) {
        case 'A':
            return Point(_x - num, _y);
        case 'S':
            return Point(_x, _y - num);
        case 'W':
            return Point(_x, _y + num);
        case 'D':
            return Point(_x + num, _y);
        default:
            return *this; // 返回当前对象
        }
    }

private:
    int _x;
    int _y;
};

int main(int argc, char* argv[]) {
    Point p(0, 0);
    Point p1(0, 0);
    vector<string> vec;
    char ch;
    int num;
    string str;

  /*  while (getline(cin, str, ';')) {
        vec.push_back(str);
    }*/
 
    getline(cin, str);
   

    for (int i = 0; i < str.size(); i = i + 1)
    {
        string temp;
        while (str[i] != ';')
        {
            temp.push_back(str[i]);
            i = i + 1;
        }
        vec.push_back(temp);
    }

   /* for (const auto& elem : vec) {
        cout << elem << " ";
    }
    cout << endl;*/

    for (const auto& cmd : vec) {
        if (cmd.length() == 2 && isalpha(cmd[0]) && isdigit(cmd[1])) {
                ch = cmd[0];
                num = cmd[1] - '0'; // 假设数字只有一位
                /*cout << "数字只有一位num =" << num;*/
                p1 = p.remove_function(ch, num);
                p = p1; // 更新当前点
                
        }
        else if (cmd.length() == 3 && isalpha(cmd[0]) && isdigit(cmd[1]) && isdigit(cmd[2])) {
            ch = cmd[0];
            num = (cmd[1] - '0' )* 10 + cmd[2] - '0'; // 假设数字有两位
        /*    cout << "数字有两位num =" << num << endl;*/
            p1 = p.remove_function(ch, num);
            p = p1; // 更新当前点
        }
        
    }

    p1.print();
    return 0;
}


全部评论

相关推荐

不愿透露姓名的神秘牛友
11-29 12:19
点赞 评论 收藏
分享
Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务