关于反转的问题

发布于 2024-09-06 12:16:52 字数 211 浏览 4 评论 0 原文

我在网站上读过一些内容,反转意味着如果 i then A[i]>A[j] 并且它有一些关于此的练习,我有一个有很多问题,但我想一开始只问其中一个,然后如果可以的话我会自己做其他练习!

练习:哪种排列数组 (1,2, ..., n) 的反转次数最多?这些是什么? 谢谢

I have read something in the site that inversion means if i<j then A[i]>A[j] and it has some exercises about this , I have a lot of questions but I want to ask just one of them at first and then i will do the other exercises by myself if I can!!

Exercise: What permutation array (1,2, ..., n) has the highest number of inversion? What are these?
thanks

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

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

发布评论

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

评论(3

原来是傀儡 2024-09-13 12:16:52

显然 N, ..., 2, 1 的反转次数最多。每对都是一个反转。例如,对于 N = 6,我们有 6 5 4 3 2 1。反转为6-5、6-4、6-3、6-2、6-1、5-4、5-3等。他们的数量是N * (N - 1) / 2

Clearly N, ..., 2, 1 has the highest number of inversions. Every pair is an inversion. For example for N = 6, we have 6 5 4 3 2 1. The inversions are 6-5, 6-4, 6-3, 6-2, 6-1, 5-4, 5-3 and so on. Their number is N * (N - 1) / 2.

猫腻 2024-09-13 12:16:52

嗯,恒等排列 (1,2,...,n) 没有反转。由于反转是一对与其索引顺序相反的元素,因此答案可能涉及该排列的一些反转。

Well, the identity permutation (1,2,...,n) has no inversions. Since an inversion is a pair of elements that are in reverse order than their indices, the answer probably involves some reversal of that permutation.

逆蝶 2024-09-13 12:16:52

我从来没有听说过这样使用的术语反转

对于N>0,长度N的递减数组具有1/2*N*(N-1)对i<j,其中A[i]>A[j]。这是最大可能的值。

I have never heard the term inversion used in this way.

A decreasing array of length N, for N>0, has 1/2*N*(N-1) pairs i<j with A[i]>A[j]. This is the maximum possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文