本文介绍了算法复杂度-双星意味着什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人知道像 O(N ** 3)这样的复杂度算法中的双星是什么意思吗?我在PHP的函数中发现了一个,但并不理解。

Does anybody know what means doubled-star in complexity algorithm like this O(N**3)? I found that one in PHP's similar_text() function and do not understand it.

thx

推荐答案

**表示力量。因此,n ** 3表示n ^ 3。复杂度为n ^ 3或O(n ^ 3)

** means power. Hence, n**3 means n^3. Complexity is of the order n^3 or O(n^3)

这篇关于算法复杂度-双星意味着什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:11