编程中的大O表示法 复杂度计算

有下面几道题,希望各位帮帮我Whatistheworst-casecomplexityoftheeachofthefollowingcodefragment?下面程序段的... 有下面几道题,希望各位帮帮我

What is the worst-case complexity of the each of the following code fragment?
下面程序段的复杂度是多少
<1>
for(i=0;i<N;i++)
{sequence of statements//程序语句,复杂度O(1)}
for(j=0;j<M;j++)
{sequence of statements}
* 如果把M换成N,复杂度又是多少

<2>
for(i=0;i<N;i++)
{
for(j=0;j<N;J++)
{sequence of statement}
}
for (k=0;k<N;k++)
{sequence of statements}

<3>
for(i=0;i<N;i++)
{
for(j=i;j<N;j++)
{sequence of statements}
}

for each of the following loops with a method call,determine the overall complexity, As above ,assume that method f takes constant time, and that method g takes time linear in the value of its parameter
翻译的不准确请见谅
下面每一个loop,确定他的复杂度,
method f 所用时间是常量,
method g 所用时间是线性随着他的parameter的值增长的

<1>for(j=0;j<N;j++)f(j);
<2>for(j=0;j<N;j++)g(j);
<3>for(j=0;j<N;j++)g(k);

谢谢各位,回答满意再加分~
展开
 我来答
jiakyonline
2009-09-03 · TA获得超过293个赞
知道小有建树答主
回答量:295
采纳率:0%
帮助的人:204万
展开全部
<1> O(N+M); O(N);

<2> O(N2);

<3> O(N2);

for each of the following loops with a method call,determine the overall complexity, As above ,assume that method f takes constant time, and that method g takes time linear in the value of its parameter

<1>for(j=0;j<N;j++)f(j); O(N);
<2>for(j=0;j<N;j++)g(j); O(N2);
<3>for(j=0;j<N;j++)g(k); g(k)? k是什么
瑞地测控
2024-08-12 广告
在苏州瑞地测控技术有限公司,我们深知频率同步与相位同步的重要性。频率同步确保两个或多个设备的时钟频率变化一致,但相位(即时间点)可保持相对固定差值。而相位同步,即时间同步,要求不仅频率一致,相位也必须完全一致,即时间差恒定为零。相位同步的精... 点击进入详情页
本回答由瑞地测控提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式