在我正在编写的程序中,我有一些类似于这里的代码:
#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
struct people
{
string name;
int st;
int sn[50];
};
int main()
{
unsigned int n,ST[10]={25,18,15,12,10,8,6,4,2,1};
vector<people> master;
cin>>n;
for (int i=0;i<n;i++)
{
unsigned int m;
cin>>m;
for (int j=0;j<m;j++)
{
people youngling; //I am declaring it here, but it doesn't solve the issue
string s;
cin>>s;
for (int l=0;l<master.size();l++)
{
if (master[l].name.compare(s)==0)
{
if (j<10) master[l].st+=ST[j];
master[l].sn[j]++;
goto loop;
}
}
youngling.name=s;
if (j<10) youngling.st=ST[j];
for (int l=0;l<50;l++) youngling.sn[l]=0;
youngling.sn[j]++;
master.push_back(youngling);
loop:;
}
}
}
正如你所看到的,我将一个 struct ( people youngling
) 推回到一个向量 ( vector<people> master
) 中。但是,这段代码给了我错误的结果,我认为这可能是由结构和浅拷贝问题引起的。这在一定程度上得到了证明,因为如果我使用完整的数组people
来存储输入,那么答案是正确的。但我对此感到困惑:
- struct 只是指向编译器的指针,还是为什么存在这种浅拷贝问题?
- 我声明了
people youngling
inner loop,希望能解决这个问题,但是没用。有什么简单的方法可以更正上面的代码片段吗? - 当我使用 GCC 4.4 对小案例进行测试时,答案似乎是正确的。但是,当我使用 gnu C++0X 测试它时,答案是错误的。这是编译器特定的问题吗?
注意:我无法提供错误的测试用例,因为我使用的是裁判系统在线测试它。