在 C++ 中猜测排列所需的移动次数

在本教程中,我们将编写一个程序来计算猜测排列所需的移动次数。

给您一个数字 N,您需要找到在最坏情况下猜测排列所需的移动。

要猜测第i 个位置,我们需要n - i 次移动。对于每一步,我们都需要i步。最后,我们需要n步才能找到正确的排列。

示例

让我们看看代码。

#include <bits/stdc++.h>

using namespace std;

int getNumberMoves(int n) {

   int count = 0;

   for (int i = 1; i <= n; i++) {

      count += i * (n - i);

   }

   count += n;

   return count;

}

int main() {

   int n = 9;

   cout << getNumberMoves(n) << endl;

   return 0;

}

输出结果

如果你运行上面的代码,那么你会得到下面的结果。

129

结论

如果您对本教程有任何疑问,请在评论部分提及。

以上是 在 C++ 中猜测排列所需的移动次数 的全部内容, 来源链接: utcz.com/z/350465.html

回到顶部