- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的源 cpp 文件中实现一个最小类型的二进制堆,并使用不同输入和操作的一些特定情况对其进行测试。但是,我的断言测试没有通过以下操作序列:
cout << "Testing percolate down If there are two children nodes that are both smaller than
the parent... " << endl;
heap.insert(23);
heap.insert(43);
heap.insert(234);
heap.insert(321);
heap.insert(243);
cout<<"nerde"<<endl;
cout << "Testing percolate down If there are two children nodes that are both smaller than
the parent..." << endl;
assert(heap.getMin() == 23);
heap.deleteMin();
assert(heap.getMin() == 43);
heap.deleteMin();
assert(heap.getMin() == 234);
heap.deleteMin();
cout<<"nerde78"<<endl;
assert(heap.getMin() == 243);
heap.deleteMin();
assert(heap.getMin() == 321);
heap.deleteMin();
我的输出在上面 cout<<"nerde78"<<endl;
处给出断言失败
我的基于堆数组的实现以索引 1 开始(未使用零索引)。而且我认为所有 DeleteMin、GetMin 和 Insert 函数都是正确的。堆的构造函数:
BinaryHeap::BinaryHeap(int capacity) {
this->capacity = capacity;
// The element at index 0 is not used!
// The root element will be placed at index 1
heap = new int[capacity+1];
size = 0;
}
插入:
void BinaryHeap::insert(int element) {
//Parcolate up
if(size<capacity)
{
int hole=++size;
for( ;hole>1 && element<heap[hole/2];hole/=2 )
{
heap[hole]=heap[hole/2];
}
heap[hole]=element;
}
// TO BE COMPLETED
// The capacity of the heap is assumed to be fixed.
// Insert the element if size < capacity
// Do nothing otherwise.
// After the new element is inserted, perform a percolate up operation here.
// You can add a percolateUp method to the class,
// or just implement the operations within this insert method.
}
删除最小值:
void BinaryHeap::deleteMin() {
if(size>=1)
{
heap[1]=heap[size-1];
size--;
percolateDown(1);
}
}
获取分钟:
int BinaryHeap::getMin() {
if(size<1)
{
return -1;
}
else
return heap[1];
// TO BE COMPLETED
// If the size is less than 1, return -1
// Otherwise, return the value of the root node
}
向下渗透:
void BinaryHeap::percolateDown(int hole) {
// TO BE COMPLETED
// Compare the node with its children; if they are in the correct order, stop
// Otherwise, swap the element with the smallest child
// Repeat the operation for the swapped child node
int min_index = hole;
int left = hole * 2 ;
int right = hole * 2 + 1;
if (left < size && heap[left]<heap[min_index]) {
min_index = left;
}
if (right < size && heap[right]<heap[min_index]) {
min_index = right;
}
if (min_index != hole) {
swap(hole, min_index);
percolateDown( hole);
}
}
交换:
void BinaryHeap::swap(int i, int j) {
int t = heap[i];
heap[i] = heap[j];
heap[j] = t;
}
我当前的错误信息:
Assertion failed: heap.getMin() == 243
我猜我需要包括另一个 if/else 情况,以便向下渗透结合左右子索引以从提到的情况中传递,但我并没有真正弄清楚如何。也许绘制形成的树是个好主意。
最佳答案
为了提高可读性,我更改了一点插入方法。首先,如果有足够的空间,我们将一个新元素插入到数组的末尾。然后我们检查堆属性是否有效,换句话说,如果后者更大,我们继续进行根交换子和父。
void insert(int element) {
if(size < capacity) {
int hole = ++size;
heap[hole] = element;
while(hole > 1 && heap[hole] < heap[hole / 2]){
swap(hole / 2, hole);
hole /= 2;
}
}
}
然后在 deleteMin 和 percolateDown 这两个函数中,您在索引方面遇到了问题,因为目前您的算法意味着零索引。我已将 size - 1 更改为 size。
void deleteMin() {
if(size >= 1) {
heap[1] = heap[size];
size--;
percolateDown(1);
}
}
同样,您需要在 percolateDown 函数中使用 less 或 equal 运算符来进行索引比较。此外,您是从 min_index 而不是父洞 hole 开始的。
void percolateDown(int hole) {
int min_index = hole;
int left = hole * 2;
int right = hole * 2 + 1;
if (left <= size && heap[left] < heap[min_index]) {
min_index = left;
}
if (right <= size && heap[right] < heap[min_index]) {
min_index = right;
}
if (min_index != hole) {
swap(hole, min_index);
percolateDown(min_index);
}
}
关于c++ - 在特定情况下无法向下渗透 MIN 二进制堆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58895261/
我正在尝试模拟 Max-Min 和 Min-Min 调度算法,并在模拟中自己编写代码。但是不太了解如何在代码中实现它们的工作方式。 例如,在 FCFS 算法中我使用了 3 个服务器 (vms),每个服
有人可以帮我实现这个功能吗?此功能位于相机应用程序内部,该应用程序使用过滤算法来检测颜色变化等方面的差异。语法对我来说非常困难。我不知道如何处理参数中的指针、最小和最大变量语法、什么是增量等?有人可以
我遇到如图所示的表数据情况,我想从每个唯一成员中选择 min(code) 和 secondary_min(code) 。 即期望的输出看起来像 member | min(code) | s
我有一个查询,选择每小时的最小值: SELECT MIN(price), HOUR(timestamp), DATE(timestamp) FROM `scan` GROUP BY DATE(time
#include int min(int pArray[], int nrOfArrayElements) { min = pArray[0]; for (int i = 1; i
generate(vec.begin(), vec.end(), [=](){return static_cast(static_cast(ran()) /RAND_MAX*(max-min)+min
当 min 已经被定义为宏时,如何调用 std::min? 最佳答案 (std::min)(x,y) min 周围的括号防止宏扩展。这适用于所有函数宏。 关于c++ - 当 min 被定义为宏时如何调
我正在尝试对(几个)SQL 数据库中的现有数据负载进行一些转换分析。 数据结构本身非常简单。它只是一个 Actor 列表(比如 user_id)和他们所做的事情的名称。它看起来像这样(还有其他数据,但
我正在尝试根据浏览器的最小高度和最小宽度更改我页面上的 CSS,所以我正在使用它: @media (min-height: 500px), (min-width: 580px) { /* CSS
我有两张 table 。第一个表显示 id_product 和 Product_price_value。下面我将向您展示一个示例(在我的数据库中有很多行) 表:主产品 ID_product: prod
我有两个表:商品和价格(一对多) 每个项目都有一个默认价格,但是这个价格可以在第二个表中被覆盖(在某些情况下)。 首先,我在获取所有项目并预先计算最低价格 - 默认价格与其覆盖当前价格(如果有的话?)
我使用以下命令用 pandas 读取了此 Excel 工作表(仅“DATEHEUREMAX”列): xdata = read_excel('Data.xlsx', 'Data', usecols=['
我想了解min-max堆删除的过程是如何工作的,我已经搜索了它的伪代码但一无所获,而且我似乎不能在这里询问伪代码。所以这是我的问题 谁能展示“删除最小元素 7”的逻辑,至少让我知道伪代码“感觉如何”?
将 std::min 传递给函数不会编译。我将 std::min 的 libcpp 声明复制到我的源文件中并且它有效。 std 版本有什么问题? clang 和 gcc 也是如此。在 Godbolt
请看这个例子:http://jsfiddle.net/vrgT3/5/ 我用 overflow: auto; 创建了一个 250x250px 父 div,因此当内容溢出框时会出现滚动条。我设置了蓝色背
假设我有 4 个变量 a、b、x、y和一个约束 min(a,b) > min(x,y)。 我如何在 pulp python 中表示这个程序? 最佳答案 好的。所以,我发布(删除)的第一个答案有点仓促,
我刚刚经历了 THIS fiddle 和代码如下所示: 现在,当我使用 View 框并将值更改为 viewbox="100 100 225 225" 时它具有执行以下操作的效果
我有 minSdkVersion 16,我想搜索正确的支持库以便使用方法 setActionBar()(在 api 级别 21 中引入)。 我应该使用哪个 appcompat 版本?当然,我不想使用旧
bootstrap.min.css 和 bootstrap.min.js 有什么区别?为什么需要包含 bootstrap.min.js? 和 最佳答案 它们都是完整 Bootstrap 样式 (C
我是一名优秀的程序员,十分优秀!