• [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
  • 相关阅读:
    关于一些无法被代替的宏定义函数
    error in invoking target 'mkldflags ntcontab.o nnfgt.o' of makefile
    ajax——XMLHttpRequest
    Readprocessmemory使用方法
    互信息的概念和定理
    音频编辑大师 3.3 注册名称 许可证
    youwuku和koudaitong以及weimeng差异
    delphi webbrowser 经常使用的演示样本
    大约ActionContext.getContext()使用体验
    Codeforces Round #243 (Div. 1)——Sereja and Two Sequences
  • 原文地址:https://www.cnblogs.com/immjc/p/8298589.html
Copyright © 2020-2023  润新知