537 Complex Number Multiplication 复数乘法
Posted lina2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了537 Complex Number Multiplication 复数乘法相关的知识,希望对你有一定的参考价值。
详见:https://leetcode.com/problems/complex-number-multiplication/description/
C++:
class Solution { public: string complexNumberMultiply(string a, string b) { int n1 = a.size(), n2 = b.size(); auto p1 = a.find_last_of("+"), p2 = b.find_last_of("+"); int a1 = stoi(a.substr(0, p1)), b1 = stoi(b.substr(0, p2)); int a2 = stoi(a.substr(p1 + 1, n1 - p1 - 2)); int b2 = stoi(b.substr(p2 + 1, n2 - p2 - 2)); int r1 = a1 * b1 - a2 * b2, r2 = a1 * b2 + a2 * b1; return to_string(r1) + "+" + to_string(r2) + "i"; } };
参考:http://www.cnblogs.com/grandyang/p/6660437.html
以上是关于537 Complex Number Multiplication 复数乘法的主要内容,如果未能解决你的问题,请参考以下文章
537. Complex Number Multiplication
537 Complex Number Multiplication 复数乘法
537. Complex Number Multiplication