- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在分配时遇到了一些问题,我要隐藏一个特定的递归合并排序算法,该算法使用 vector ,但使用数组代替。
这是我目前所拥有的,我相信 Sort() 工作正常。但是,Merge() 是我认为问题所在...谢谢!
#include "genlib.h"
#include <iostream>
/* Private function prototypes */
void Sort(int arr[], int n);
void Merge(int *arr[], int *arr1[], int *arr2[], int n1, int n2);
/* Main program */
int main() {
int arr[] = {88, 10, 20, 50, 7, 44, 99, 9, 900, 44};
int n = sizeof(arr) / sizeof(arr[0]);
Sort(arr, n);
cout << "[";
for (int i = 0; i < n; i++) { // prints out sorted array
if (i > 0) cout << ", ";
cout << arr[i];
}
cout << "]" << endl;
return 0;
}
/*
* Function: Sort
* Usage: void MergeSort(int arr[], const int START, const int END);
* ----------------------------------------------------------------------------------
* This function sorts the elements of the array into increasing numerical order
* using the merge sort algorithm, which consists of the following steps:
* 1. Divide the array into two halves.
* 2. Sort each of these smaller array recursively.
* 3. Merge the two arrays back into the original one.
*
* NOTE: Although in the book, the creation of the 2 divided arrays would occur in
* this function, I had a lot of difficulty trying to get the recursive sort
* to work with dynamic arrays. This is due to my inability to delete the
* array from memory before it gets called again.
* I opted to dynamically create the array in Merge() instead.
*/
void Sort(int arr[], int n) {
if (n <= 1) return; // base case
int mid = n/2;
int *arr1 = NULL;
int *arr2 = NULL;
arr1 = new int[mid];
arr2 = new int[n-mid];
for (int i=0; i<n; i++) {
if (i < (mid)) {
arr1[i] = arr[i];
} else {
arr2[i-(mid)] = arr[i];
}
}
Sort(arr1,mid);
delete[] arr1;
Sort(arr2,n-mid);
delete[] arr2;
for (int i=0; i<n; i++) {
arr[i] = 0;
}
Merge(&arr, &arr1, &arr2, n/2, n/2);
}
/*
* Function: Merge
* Usage: void Merge(int arr[], const int START, const int MID, const int END);
* ----------------------------------------------------------------------------------
* This function merges two sorted arrays into the original array, which should be
* empty before this operation. Because the input arrays are sorted, the
* implementation can always select the first unused element in one of the input
* array vectors to fill the next position.
*/
void Merge(int *arr[], int *arr1[], int *arr2[], int n1, int n2) {
int p1 = 0;
int p2 = 0;
while (p1 < n1 && p2 < n2) {
if (arr1[p1] < arr2[p2]) {
arr[p1+p2] = arr1[p1];
p1++;
} else {
arr[p1+p2] = arr2[p2];
p2++;
}
}
while (p1 < n1) {
arr[p1+p2] = arr1[p1];
p1++;
}
while (p2 < n2) {
arr[p1+p2] = arr2[p2];
p2++;
}
}
这是原始 vector 实现:
/*
* Function: Sort
* -------------- * This function sorts the elements of the vector into
* increasing numerical order using the merge sort algorithm,
* which consists of the following steps:
*
* 1. Divide the vector into two halves.
* 2. Sort each of these smaller vectors recursively.
* 3. Merge the two vectors back into the original one.
*/
void Sort(Vector<int> & vec) {
int n = vec.size();
if (n <= 1) return;
Vector<int> v1;
Vector<int> v2;
for (int i = 0; i < n; i++) {
if (i < n / 2) {
v1.add(vec[i]);
} else {
v2.add(vec[i]);
}
}
Sort(v1);
Sort(v2);
vec.clear();
Merge(vec, v1, v2);
}
/*
* Function: Merge
* --------------- * This function merges two sorted vectors (v1 and v2) into the
* vector vec, which should be empty before this operation.
* Because the input vectors are sorted, the implementation can
* always select the first unused element in one of the input
* vectors to fill the next position.
*/
void Merge(Vector<int> & vec, Vector<int> & v1, Vector<int> & v2) {
int n1 = v1.size();
int n2 = v2.size();
int p1 = 0;
int p2 = 0;
while (p1 < n1 && p2 < n2) {
if (v1[p1] < v2[p2]) {
vec.add(v1[p1++]);
} else {
vec.add(v2[p2++]);
}
}
while (p1 < n1) vec.add(v1[p1++]);
while (p2 < n2) vec.add(v2[p2++]);
}
最佳答案
问题出在“排序”:
Sort(arr1,mid);
delete[] arr1;
Sort(arr2,n-mid);
delete[] arr2;
for (int i=0; i<n; i++) {
arr[i] = 0;
}
Merge(&arr, &arr1, &arr2, n/2, n/2);
首先对数组进行排序,然后删除它(结果 arr1 是一个空指针)你对 arr2 做同样的事情。
当你开始合并的时候,你已经删除了数据,释放了内存
一个解决方案可能是,将“删除”语句移动到合并调用下方:
Sort(arr1,mid);
Sort(arr2,n-mid);
for (int i=0; i<n; i++) {
arr[i] = 0;
}
Merge(&arr, &arr1, &arr2, n/2, n/2);
delete[] arr1;
delete[] arr2;
这样您就不会丢失数据。因为您使用“new”- 语句创建数组,所以您不应该试图离开“delete”。
希望这能解决你的问题
关于C++递归合并排序传递指针导致零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8382997/
我有几个长度不等的 vector ,我想对其进行cbind。我将 vector 放入列表中,并尝试结合使用do.call(cbind, ...): nm <- list(1:8, 3:8, 1:5)
合并(合并)两个 JSONObjects 的最佳方式是什么? JSONObject o1 = { "one": "1", "two": "2", "three": "3" }
我在一个表中有许多空间实体,其中有一个名为 Boundaries 的 geometry 字段。我想生成一个具有简化形状/几何图形的 GeoJson 文件。 这是我的第一次尝试: var entitie
谁能说出为什么这个选择返回 3.0 而不是 3.5: SELECT coalesce(1.0*(7/2),0) as foo 这个返回 3: SELECT coalesce(7/2,0) as foo
首先抱歉,也许这个问题已经提出,但我找不到任何可以帮助我的东西,可能是因为我对 XSLT 缺乏了解。 我有以下 XML: 0 OK
有时用户会使用 Windows 资源管理器复制文件并在他们应该执行 svn 存储库级别的复制或合并时提交它们。因此,SVN 没有正确跟踪这些变化。一旦我发现这一点,损坏显然已经完成,并且可能已经对相关
我想组合/堆叠 2 个不同列的值并获得唯一值。 如果范围相邻,则可以正常工作。例如: =UNIQUE(FILTERXML(""&SUBSTITUTE(TEXTJOIN(",",TRUE,TRANSPO
使用iTextSharp,如何将多个PDF合并为一个PDF,而又不丢失每个PDF中的“表单字段”及其属性? (我希望有一个使用来自数据库的流的示例,但文件系统也可以) 我发现this code可以正常
是否有一个合并函数可以优先考虑公共(public)变量中的非缺失值? 考虑以下示例。 首先,我们生成两个 data.frames,它们具有相同的 ID,但在特定变量上有互补的缺失值: set.seed
我们正在尝试实现 ALM Rangers 在最新的 Visual Studio TFS Branching and Merging Guide 中描述的“基本双分支计划”。 .从指导: The bas
我在不同目录(3个不同名称)中有很多(3个只是一个例子)文本文件,如下所示: 目录:A,文件名:run.txt 格式:txt制表符分隔 ; file one 10 0.2 0.5 0.
我有一张包含学生等级关系的表: Student Grade StartDate EndDate 1 1 09/01/2009 NULL 2
我在学习 https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/working-with-associatio
我觉得我有世界上最简单的 SVN 用例: 我有一个文件,Test.java在 trunk SVN的。 我分行trunk至 dev-branch . 我搬家Test.java进入 com/mycompa
我有两个数据框,其中一些列名称相同,而另一些列名称不同。数据框看起来像这样: df1 ID hello world hockey soccer 1 1 NA NA
Elasticsearch 中是否缺少以扁平化形式(多个子/子aggs)返回结果的方法? 例如,当前我正在尝试获取所有产品类型及其状态(在线/离线)。 这就是我最终得到的: aggs [ { key:
如何合并如下所示的 map : Map1 = Map(1 -> Class1(1), 2 -> Class1(2)) Map2 = Map(2 -> Class2(1), 3 -> Class2(2)
我试图通过从netezza服务器导入数据来合并两个数据集。 以下是数据集,其数字为,ID为,字母为,名称为: 下表都是使用命令从netezza导入的: sqoop import --connect n
我有两个数组 $array1 = array('first', 'second', 'third', 'fourth'); $array2 = array('first', 'third', 'fou
我正在 SQL Server 中运行合并。在我的更新中,我只想在值发生更改时更新该行。有一个版本行在每次更新时都会递增。下面是一个例子: MERGE Employee as tgt USING (SE
我是一名优秀的程序员,十分优秀!