gpt4 book ai didi

c++ - 读取数字列表并排序 C++

转载 作者:太空狗 更新时间:2023-10-29 19:46:32 26 4
gpt4 key购买 nike

我正在尝试从文件中读取数字列表,然后通过将它们读入数组然后对数组的内容进行排序来对它们进行排序。但是我得到了

error:incompatible types in assignment of 'std::basic_ostream<char, std::char_traits<char> >' to 'int [1]' 

我是编程新手,这是我第一次使用 C++谁能告诉我如何将数字列表写入数组以便对它们进行排序?这是我所拥有的:

#include <fstream>
#include <iostream>
#include <iomanip>
#define ANYSIZE_ARRAY 1
using std::cout;
using std::endl;


int main()
{
const char* filename = "test.txt";
std::ifstream inputFile(filename);
int numbers[ANYSIZE_ARRAY];
int i, key;

// Make sure the file exists
if(!inputFile)
{
cout << endl << "The File is corrupt or does not exist. " << filename;
return 1;
}

long n = 0;
while(!inputFile.eof())
{
inputFile >> n;
numbers = cout << std::setw(10) << n;
}

for(int j=1;j<5;j++)
{
i=j-1;
key=numbers[j];
while(i>=0 && numbers[i]>key)
{
numbers[i+1]=numbers[i];
i--;
}
numbers[i+1]=key;
}

//Display sorted array
cout<<endl<<"Sorted Array\t";
for(i=0;i<5;i++)
cout<<numbers[i]<<"\t";
cout<<endl;
}

最佳答案

导致错误的行是:

numbers = cout << std::setw(10) << n;

我不太确定你在这里想做什么,看起来你只是想打印它,在这种情况下不需要 numbers =

读取所有数据的循环结构也有问题。行:while (!inputFile.eof()) 不是惯用的 C++,不会做您希望的事。 See here for a discussion on that issue (和 here )。

作为引用,您可以使用 std::sort

以更少的工作量轻松完成此操作
#include <iterator>
#include <algorithm>
#include <vector>
#include <fstream>
#include <iostream>

int main() {
std::ifstream in("test.txt");
// Skip checking it

std::vector<int> numbers;

// Read all the ints from in:
std::copy(std::istream_iterator<int>(in), std::istream_iterator<int>(),
std::back_inserter(numbers));

// Sort the vector:
std::sort(numbers.begin(), numbers.end());

// Print the vector with tab separators:
std::copy(numbers.begin(), numbers.end(),
std::ostream_iterator<int>(std::cout, "\t"));
std::cout << std::endl;
}

该程序还使用 std::vector 而不是数组来抽象“我的数组应该有多大?”问题(您的示例看起来可能存在问题)。

关于c++ - 读取数字列表并排序 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10677119/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com