我必须将文件中的所有数据(整数)读取到数组中,然后迭代数组以生成最小堆并将它们添加到当前堆的最后一个元素之后。读入数组后,我必须调用SiftUp()
每个元素,这意味着将 int 移动到数组中的正确位置。此外,我必须在读取整数时对其进行计数并将全局 heapSize 设置为该值。在所有输入结束时,我试图打印出最小堆数组的前五个元素。输出错误。我的代码没有做任何最小堆,这就是为什么输出是随机的。逻辑有什么问题?
输入文件有 97 个整数:
347
765
654
44
15
567
098
//and so on
输出:
Please enter the name of the file to open :data.txt
at index 1 :284
at index 2 :870
at index 3 :319
at index 4 :47
at index 5 :312
at index 1 :284 // i dont know why it started again
at index 2 :870
at index 3 :319
at index 4 :47
at index 5 :312 //stops here
我的程序:
using namespace std;
int heapSize;
void SiftUp(int arr[], int heapSize);
const int arr_Size=100;
int heapArr[arr_Size];
void minHeap(int heapArr[]);
int main()
{
int integers;
string fileName;
ifstream infile;
cout << "Please enter the name of the file to open :";
cin >> fileName;
infile.open(fileName.c_str());
if(!infile)
{
cerr << "An eror occurred while openieng the file.";
exit(1);
}
while(!infile.eof())
{
for (int i=0; i<arr_Size; i++){
infile >> integers;
heapArr[i]=integers;
heapSize=i;
}
}
infile.close();
minHeap(heapArr);
for (int count =1 ; count <=5 ; count ++)
{
cout << " Min at index " << count <<" :"<< heapArr[count] << endl;
}
return 0;
}
void SiftUp(int arr[], int heapSize)
{
int p;
if (heapSize==1) return;
else p = heapSize/2;
if (arr[p] > arr[heapSize]) return;
else swap (arr[heapSize],arr[p]);
SiftUp(arr, p);
}
void minHeap(int arr[])
{
for (int i=0; i <arr_Size ; i++){
SiftUp(arr, heapSize);
}
}