gpt4 book ai didi

c++ - vector 包含类对象,类对象每个对象包含 3 个字符串。我如何找到特定的字符串,然后删除整个元素?

转载 作者:搜寻专家 更新时间:2023-10-31 01:38:07 27 4
gpt4 key购买 nike

我有一个包含 3 个元素的类,例如 {first_name, Last_name, Phone}

我有一个 vector 来保存这组信息。我可以用什么方式寻找集合中的单个元素,例如 find(last_name),并删除包含该特定姓氏的所有元素?

我已经尝试了很多示例,并且在全世界的谷歌中进行了广泛的搜索。请帮忙。附件是一些代码:

int number = 4;
vector <Friend> BlackBook(number);

Friend a("John", "Nash", "4155555555");
Friend d("Homer", "Simpson", "2064375555");

BlackBook[0] = a;
BlackBook[1] = d;

现在这只是用于设置的相同基本代码。这是我尝试过的几件事。但是我越看代码说的越多,它似乎越不允许字符串参数......但是我不知道如何就特定字符串进行类争论......好吧我不知道我做错了什么。我有一种感觉,我可以用指针来做到这一点,但整个指针的东西还没有点击。但是这里有一些我试过的东西。

vector <Friend> :: iterator frienddlt;
frienddlt = find (BlackBook.begin(), BlackBook.end(), nofriend);
if (frienddlt != BlackBook.end())
{
BlackBook.erase( std::remove( BlackBook.begin(), BlackBook.end(), nofriend), BlackBook.end() );
}
else
{
cout << nofriend <<" was not found\n" << "Please Reenter Last Name:\t\t";
}

当我编译项目时,头文件 STL_algo.h 打开并指向第 1133 行。任何帮助将非常感激!!谢谢你!

最佳答案

尝试 remove_if

My example:

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

struct Friend {
string first_name;
string last_name;
string phone;
};

bool RemoveByName (vector<Friend>& black_book, const string& name) {
vector<Friend>::iterator removed_it = remove_if(
black_book.begin(), black_book.end(),
[&name](const Friend& f){return f.first_name == name;});

if (removed_it == black_book.end())
return false;

black_book.erase(removed_it, black_book.end());
return true;
}

int main() {
vector <Friend> black_book {
Friend {"John", "Nash", "4155555555"},
Friend {"Homer", "Simpson", "2064375555"}
};
if (RemoveByName(black_book, "John")) {
cout << "removed" << endl;
} else {
cout << "not found" << endl;
}
if (RemoveByName(black_book, "Tom")) {
cout << "removed" << endl;
} else {
cout << "not found" << endl;
}
for (int i = 0; i < black_book.size(); ++i) {
Friend& f = black_book.at(i);
cout << f.first_name << " " << f.last_name << " " << f.phone << endl;
}
return 0;
}

输出:

removed
not found
Homer Simpson 2064375555

关于c++ - vector 包含类对象,类对象每个对象包含 3 个字符串。我如何找到特定的字符串,然后删除整个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33253368/

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