下面代码中的循环不变式是什么

发布于 2024-12-07 14:21:42 字数 377 浏览 0 评论 0原文

此示例代码中的循环不变式是什么。
这是用 C 编程语言实现的摘录代码:

//pre-condition m,n >= 0
x=m;
y=n;
z=0;
while(x!=0){
  if(x%2==0){
    x=x/2;
    y=2*y;
  }
  else{
    x=x-1;
    z=z+y;
  }
}//post-condition z=mn

这些是我最初的答案(循环不变):

  1. y>=n
  2. x<=m
  3. z>=0

我对此仍然不确定。谢谢。

What is the Loop Invariant(s) in this sample code.
This is an excerpt code implemented in C programming language:

//pre-condition m,n >= 0
x=m;
y=n;
z=0;
while(x!=0){
  if(x%2==0){
    x=x/2;
    y=2*y;
  }
  else{
    x=x-1;
    z=z+y;
  }
}//post-condition z=mn

These are my initial answers (Loop Invariant):

  1. y>=n
  2. x<=m
  3. z>=0

I am still unsure about this. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸印温柔 2024-12-14 14:21:42

您的答案确实是不变的,但很少提及循环的条件。你总是必须寻找特定的不变量。在这种情况下,这很容易,因为循环内只有两个(独占)操作。

第一个 x' = x/2; y' = 2*y; 看起来它在 x*y 下是不变的。

第二个x' = x-1; z' = z+y; 不是:x'*y' = x*y - y。但如果你再次添加 z 它将保持不变。 z'+x'*y' = z + y + x*y - y = z+x*y

幸运的是,第一个条件在 z+x*y 下是不变的,因此我们发现了循环不变式。

  • 前置条件:z+x*y = m*n
  • 后置条件:x=0(循环条件),因此我们可以从不变量中推出:z = m*n

Your answers are indeed invariant but say little about the conditions of your loop. You always have to look for specific invariants. In this case it is quite easy since there are only two (exclusive) operations inside your loop.

The first x' = x/2; y' = 2*y; looks like it is invariant under x*y.

The second x' = x-1; z' = z+y; is not: x'*y' = x*y - y. But if you add z again it will be invariant. z'+x'*y' = z + y + x*y - y = z+x*y.

Fortunately also the first condition is invariant under z+x*y and thus we have found a loop invariant.

  • pre-condition: z+x*y = m*n
  • post-condition: x=0 (loop condition) and therefore we can deduce from our invariant: z = m*n
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文