gpt4 book ai didi

c++ - 具有相似索引的值的总和

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:26:54 25 4
gpt4 key购买 nike

假设我在一个文本文件中有一组 1000 个统计数据。其中第一列代表索引号,第二列代表那个值。索引可以重复,对应的值可以不同。我想计算索引的出现次数和每个索引的值之和。

我写了一段代码,它给出了索引出现的结果,但它没有给出相应的值的总和。

示例

假设我的文本文件有一组这样的数据-

#index   value
4 0.51
5 0.13
5 0.53
5 0.25
6 0.16
6 0.16
7 0.38
4 0.11
3 0.101
4 0.32
4 0.2 ... and more

所以在这种情况下-

索引 4 出现 4 次,对应的值的 = (0.51+0.11+0.32+0.2) = 1.14

同理

索引 5 出现 2 次并且值的总和 = (0.13+0.53)= 0.66 等

我的代码

这是我的代码-

#include <iostream>
#include <map>
#include <fstream>

using namespace std;


int main()
{
map<double,double> index;
double number,value;
double total;


ifstream theFile ("a1.txt");
while(theFile >> number >> value)
{
++index[number];
total +=value;
}
cout<<"index\t occurs\t total"<<endl;


for(auto loop = index.begin(); loop != index.end();++loop)
{
cout << loop->first << "\t " << loop->second << "\t \t "<< total<<endl;
}
return 0;
}

此代码生成结果-

index  occurs  total
3 1 2.851
4 4 2.851
5 3 2.851
6 2 2.851
7 1 2.851

虽然出现的次数是正确的但是

total +=value;

不会生成我正在寻找的输出。如何获得每个索引的总和?

最佳答案

  1. 每个索引需要一个总数
  2. 每个索引需要一个计数

对此的简单解决方案是使用以下结构:

struct per_index
{
int count;
double total;
per_index(): total(0), count(0) {}
};

std::map<int, per_index> index;

...

index[number].count++;
index[number].total += value;

请注意,我不相信您阅读的number 应该(或需要)是double,它只会让生活变得更复杂,因为double 在比较相等时有困难。所以我将 number 设为 int - 您需要更改代码中的声明。

关于c++ - 具有相似索引的值的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18084583/

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