我无法输出包含在 txt 文件中的整数的最小值和最大值。
我的方向是建立一个动态数组来保存数组中值的确切数量,并将文件中的值读入数组。
值在数组中后,使用冒泡排序对它们进行排序。然后输出数组中的最小值和最大值。
==================================================== =========
不幸的是,我不允许使用向量。:(
这是我编写的代码,谢谢您的帮助!
#include <iostream>
#include <fstream>
using namespace std;
void bubbleSort(int[], int);
void printArray(int[], int);
int main()
{
// open the file
ifstream file;
file.open("4253512.txt");
// program reads file and counts how many numbers in array.
cout << "Reading from the file..." << endl;
float i;
int nElements = 0;
while (file >> i) // checks whether it's good or not
{
nElements++;
}
cout << "The amount of numbers in the file are: " << nElements << endl;
//put numbers into dynamic array
int *arr = new int[nElements];
for (i = 0; i < nElements; i++)
{
file >> arr[nElements];
}
// bubble sort the numbers
bubbleSort(arr, nElements);
// printing out the highest and lowest values
printArray(arr, nElements);
delete[] arr;
file.close();
return 0;
}
void bubbleSort(int arr[], int n)
{
for(int j = 0; j < n; j++)
{
for(int i = j + 1; i < n; i++)
{
if(arr[j] > arr[i]) // swap if bigger
swap(arr[j], arr[i]);
}
}
}
void printArray(int arr[], int n)
{
cout << "The lowest value of the array is " << arr[0] <<
" and the highest value is " << arr[n] << endl;
}
顺便说一句,构建和运行时没有运行时错误。