zoukankan      html  css  js  c++  java
  • [LeetCode] Complex Number Multiplication

    Given two strings representing two complex numbers.

    You need to return a string representing their multiplication. Note i2 = -1 according to the definition.

    Example 1:

    Input: "1+1i", "1+1i"
    Output: "0+2i"
    Explanation: (1 + i) * (1 + i) = 1 + i2 + 2 * i = 2i, and you need convert it to the form of 0+2i.

    Example 2:

    Input: "1+-1i", "1+-1i"
    Output: "0+-2i"
    Explanation: (1 - i) * (1 - i) = 1 + i2 - 2 * i = -2i, and you need convert it to the form of 0+-2i.

    Note:

    1. The input strings will not have extra blank.
    2. The input strings will be given in the form of a+bi, where the integer a and b will both belong to the range of [-100, 100]. And the output should be also in this form.

    利用stringstream格式化字符串后计算。

    class Solution {
    public:
        string complexNumberMultiply(string a, string b) {
            int ra, ia, rb, ib;
            char sign;
            stringstream sa(a), sb(b), res;
            sa >> ra >> sign >> ia >> sign;
            sb >> rb >> sign >> ib >> sign;
            res << ra * rb - ia * ib << "+" << ra * ib + rb * ia << "i";
            return res.str();
        }
    };
    // 3 ms

     利用sscanf格式化字符串后计算。

    class Solution {
    public:
        string complexNumberMultiply(string a, string b) {
            int ra, ia, rb, ib;
            sscanf(a.c_str(), "%d+%di", &ra, &ia);
            sscanf(b.c_str(), "%d+%di", &rb, &ib);
            return to_string(ra * rb - ia * ib) + "+" + to_string(ra * ib + rb * ia) + "i";
        }
    };
    // 3 ms

     使用stoi来转换

    使用substr和find分割字符串

    class Solution {
    public:
        string complexNumberMultiply(string a, string b) {
            auto pos = a.find('+');
            int ra = stoi(a.substr(0, pos));
            int ia = stoi(a.substr(pos + 1, a.find('i')));
            pos = b.find('+');
            int rb = stoi(b.substr(0, pos));
            int ib = stoi(b.substr(pos + 1, b.find('i')));
            return to_string(ra * rb - ia * ib) + "+" + to_string(ra * ib + rb * ia) + "i";
        }
    };
    // 3 ms
  • 相关阅读:
    只是记录一些东西在上面,不是为了炫耀,也不是为了。。。。
    之友赠言
    登陆名---惊涛骇浪
    JNI
    学长们的求职血泪史(C/C++/JAVA)
    胡震宁先生的《职业生涯规划》
    大小端地址转换
    关于Android不能启动的问题
    编译Android 必须安装的库
    ubuntu11.10 64bit 编译android 4.0
  • 原文地址:https://www.cnblogs.com/immjc/p/8298589.html
Copyright © 2011-2022 走看看