gpt4 book ai didi

c++ - 字符串比较 vector C++

转载 作者:行者123 更新时间:2023-11-28 06:10:44 27 4
gpt4 key购买 nike

我正在编写有关输入字符串的代码,然后将它们与 vector 中的其他元素进行比较,如果存在正匹配,则不要将它们放入。我写了这个:

    // NamePair.cpp : definisce il punto di ingresso dell'applicazione console.
//

#include "stdafx.h"
#include "std_lib_facilities.h"
#include <vector>


int _tmain(int argc, _TCHAR* argv[])
{
vector<string> names;
vector<int> scores;
string name = "0";
int score = 0;
int error = 0;
int n = 0;

cout << "Type a name and a score: " << endl;

while (cin >> name >> score) {
++n;
cout << "This is # " << n << " name you typed." << endl;
if (n >= 2) {
for (int i : scores) {
if (names[i] == name) {
cout << "You have already typed this name dude!" << endl;
}
else if (name != "NoName") {
names.push_back(name);
scores.push_back(score);
}
else {
break;
}
}
}
}

for (int i = 0; i < scores.size(); ++i) {
cout << names[i] << "\t" << scores[i] << endl;
}

keep_window_open();

return 0;
}

问题是,当我尝试运行该程序时,它可以正常工作,但它似乎停滞在我不断添加名称和分数的位置,但它显然没有做任何事情(既不显示警告消息,也不会停止如果键入“NoName”字符串)。我不知道为什么!我试图重写所有内容,但结果相同......

感谢您的帮助!

最佳答案

您检查 name 是否存在于 vector 中是错误的。变化

<罢工>

<罢工>
if (names[i] == name) {

<罢工>

if ((std::find(names.begin(), names.end(), name) != names.end()) {

此外,它看起来像 for (int i : scores)这里不需要循环。

std::map会最适合这里。此代码段将帮助您

#include <bits/stdc++.h>
using namespace std;

int main() {
map<string, int> data;
string name;
int score;
for (int n = 0; cin >> name >> score; ++n) {
if (name != "NoName" || !data.count(name))
data[name] = score;
}
for (auto & i : data)
cout << i.first << " " << i.second << endl;
return 0;
}

参见 http://ideone.com/j3Gkiw

关于c++ - 字符串比较 vector C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31324744/

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