- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在做一些关于替换选择排序的研究,但我找不到它的任何实现或任何地方的替换选择排序的良好、彻底的实现!也许我看起来不够努力,但谷歌将替换选择排序与选择排序混淆了......所以这让我想知道:
选择排序和替换选择排序之间的真正区别是什么?
我在哪里可以找到替换选择排序的实现(或编写它的指南)?
替换选择排序的哪些特点使其比其他排序算法更受欢迎?
这个算法还有其他名字吗?
最佳答案
我之前没有详细了解过这个算法,我的分析基于我从阅读 this set of lecture notes 中收集到的信息。 .
根据我的理解,选择排序和替换选择排序之间的主要区别在于,选择排序旨在对保存在主内存中的完整序列进行排序,而替换选择排序旨在将太大而无法放入主内存的未排序序列转换为可以存储在外部存储器中的一系列已排序序列的“链”。然后可以将这些外部链合并在一起以形成整体排序序列。尽管它们的名称和算法操作中的一两个关键步骤相似,但它们旨在解决根本不同的问题。
选择排序
网上有很多关于选择排序的好教程,所以我不会花太多时间讨论它。直观地,该算法的工作原理如下:
Values
大小为 n 的可以容纳一堆值,以及第二个数组
Active
大小为 n 的,包含 bool 值。我们将尝试获取大量未排序值的输入流并尽最大努力对其进行排序,因为我们只有足够的内存空间来容纳
Active
和
Values
数组,加上一些额外的存储空间变量。
n
来自包含未排序序列的外部源的值直接进入
Values
大批。然后,设置所有
Active
值为
true
.例如,如果
n = 4
,我们可能有这样的设置:
Values: 4 1 0 3
Active: Yes Yes Yes Yes
Values
中的最小值来工作。数组并将其写入输出流。在这种情况下,我们首先找到 0 值并将其写入流。这给
Values: 4 1 3
Active: Yes Yes Yes Yes
Output: 0
Values
中有一个空白点。数组,因此我们可以从外部源中提取另一个值。假设我们得到 2。在这种情况下,我们有以下设置:
Values: 4 1 2 3
Active: Yes Yes Yes Yes
Output: 0
Values: 4 2 3
Active: Yes Yes Yes Yes
Output: 0 1
Values: 4 -1 2 3
Active: Yes Yes Yes Yes
Output: 0 1
Values: 4 -1 2 3
Active: Yes NO Yes Yes
Output: 0 1
Values: 4 -1 3
Active: Yes NO Yes Yes
Output: 0 1 2
Values: 4 -1 7 3
Active: Yes NO Yes Yes
Output: 0 1 2
Values: 4 -1 7
Active: Yes NO Yes Yes
Output: 0 1 2 3
Values: 4 -1 7
Active: Yes NO Yes Yes
Output: 0 1 2 3 3
Values: 4 -1 7 2
Active: Yes NO Yes NO
Output: 0 1 2 3 3
Values: -1 7 2
Active: Yes NO Yes NO
Output: 0 1 2 3 3 4
Values
,但将其标记为非事件:
Values: 1 -1 7 2
Active: NO NO Yes NO
Output: 0 1 2 3 3 4
Values: 1 -1 2
Active: NO NO Yes NO
Output: 0 1 2 3 3 4 7
Values: 1 -1 5 2
Active: NO NO NO NO
Output: 0 1 2 3 3 4 7
Values: 1 -1 5 2
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7
Values: 1 5 2
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1
Values
中大批。
Values: 1 3 5 2
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1
Values: 3 5 2
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1 1
Values: --- 3 5 2
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1 1
Values: --- 3 5 ---
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1 1 2
Values: --- --- 5 ---
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1 1 2 3
Values: --- --- --- ---
Active: Yes Yes Yes Yes
Output: 0 1 2 3 3 4 7 -1 1 2 3 5
Make Values an array of n elements.
Make Active an array of n booleans, all initially true.
Read n values from memory into Values.
Until no values are left to process:
Find the smallest value that is still active.
Write it to the output device.
Read from the input device into the slot where the old element was.
If it was smaller than the old element, mark the old slot inactive.
If all slots are inactive, mark them all active.
关于algorithm - 替换选择排序与选择排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16326689/
我想对一个字符串执行搜索和替换,比如 password。 正如您从问题中了解到的那样,替换后的字符串应变为 sdvvzrug。 但不幸的是,下面的代码输出bbbbcaab: $search = ran
我正在使用 futurize --stage2它应用了许多源代码转换以使代码 python2 和 python3 兼容。其中一个修复是所有分区 a/b 都替换为 old_div(a/b),我想避免这种
我正在使用 RStudio,但我在控制台上的输出被截断了。我找不到如何停止截断(我尝试搜索 ?options 以及在谷歌上搜索的时间比我想承认的要长)。 编辑:我向大家道歉!我最初的长名称为“This
我有一个 fragment 堆栈,我在其中使用替换和相加。添加或替换我的 fragment 的代码(在我的 Activity 中)如下 private fun addFragment(fragment
我在一个数组中插入了一些字符串,但在我这样做之前,我想按照主题所说的去做。只用 %20 替换空格,我这样做: Name.push(linkText.replace(" ", "%20")); 但是我如
我正在尝试编译和测试我在网上看到的代码 Expanding an IP add 。但是,当我尝试编译它时,我收到有关 StringBuilder 替换方法的错误。它说: IPadd.java:52:
我正在尝试使用 dplyr 的最新功能重写我的部分代码,方法是将 data.frame() 替换为 data_frame() 和 cbind() 与 bind_cols(): library(rgeo
我最近偶然发现了 replace()和 "[ x.tst s.tst s.tst [,1] [,2] [,3] [1,] 0 0 0
我一直想知道,如何在给定的参数内进行替换。 如果你有这样的一行: 123,Hello,World,(I am, here), unknown 你想更换 World与 Foobar那么这是一个简单的任务
如何转义字符串中的双引号?例如, input: "Nobody" output: \"Nobody\" 我尝试过这样的操作,但不起作用: String name = "Nobody"; name.r
我正在做类似的事情: SQL sql sQl SqL var ps = document.getElementsByTagName('p'); for(var i = 0; i 但它不会替换文本。
我正在尝试用 \" 替换所有 " 并用 JSON 解析字符串,但浏览器抛出错误 SyntaxError: JSON Parse error: Unrecognized token '\'. 下面是代码
大家好,在这里挣扎...... 是否可以将第一个正斜杠之间的任何内容替换为“”,但保留其余部分? 例如var 将是 string "/anything-here-this-needs-to-be-re
在下面的代码中,JavaScript 替换函数中的 alert(a) 将提醒匹配的字符串,在本例中,将是 {name} 和 {place}。 这按照文档 javascript docs 的描述工作,即
+-----------------------------+ | tables | +-------------------
我正在尝试用\"替换包含 "的字符串,下面是我尝试过的程序 String s="\"/test /string\""; s = s.replaceAll("\"", "\\\"");
var text = "a's ..a's ...\"... "; text = convert(text); function convert( text ) { var n = text
我正在尝试使用 JavaScript 中的替换函数,但有一个问题。 strNewDdlVolCannRegion = strNewDdlVolCannRegion.replace(/_existing
好吧,首先我对我的上一篇文章感到非常抱歉,但我真的需要帮助,我会把我真正想要的东西放在一个更清晰的代码中。我不擅长 javascript,所以希望你能帮助我。
我正在写一张纸条,遇到了障碍。可能有更有效的方法来执行此操作,但我对 Python 还很陌生。我正在尝试创建用户生成的 IP 地址列表。我正在使用 print 来查看生成的值是否正确。当我运行此代码时
我是一名优秀的程序员,十分优秀!