什么是Java中整数乘法的渐近复杂性

时间:2015-10-07 16:59:33

标签: java algorithm asymptotic-complexity

我对int类型,IntegerBigInteger对象的乘法运算的渐近复杂性感兴趣:

int i,j = <value>;
i * j; // O?
Integer i,j = new Integer(<value>);  
i * j; // O?
BigInteger i,j = new BigInteger(<value>);
i.multiply(j); //O?

0 个答案:

没有答案