就序列而言,位置是什么?

发布于 2025-01-03 21:22:33 字数 62 浏览 1 评论 0原文

我正在尝试了解抽象数据类型“序列”,并被告知它既有排名又有位置。排名是给定元素之前的元素数量,但是位置是什么?

I'm trying to learn about the abstract data type "sequences" and am told it has both rank and position. Rank is the number of elements that come before a given element but what's position?

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

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

发布评论

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

评论(2

紧拥背影 2025-01-10 21:22:33

序列中元素的位置是该值出现的索引。例如,序列中的

137 42 13 99 59

数字 137 位于索引 0 处,数字 42 位于索引 1 处。

序列中元素的排名是该元素所在序列中元素的数量大于。因此,在上面的序列中,137 的排名为 4,42 的排名为 1,等等。当每个元素的排名等于其位置时,序列就已排序。

希望这有帮助!

The position of an element in a sequence is the index at which that value appears. For example, in the sequence

137 42 13 99 59

The number 137 is at index 0, and the number 42 is at index 1.

The rank of an element in a sequence is the number of elements in the sequence that the element is bigger than. Thus in the above sequence 137 has rank 4, 42 has rank 1, etc. The sequence is sorted when every element's ranks equal to its position.

Hope this helps!

む无字情书 2025-01-10 21:22:33

它是相对的,就像在链表中一样,您只能转到下一个(或可能是上一个)节点。

It ment relative like in a linked list you can only go to the next (or possibly previous) node.

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