- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
#include <iostream>
#include <vector>
#include <algorithm>
#include <time.h>
#include <iomanip>
using namespace std;
bool isOdd(int n)
{
cout << "HELLO";
bool val = ((n%2) == 1);
cout << val << endl;
return val;
}
int main()
{
srand(time(NULL));
vector<int> myVec;
myVec.reserve(20);
for(int i = 0; i < 20; i++)
{
myVec[i] = rand() % 100;
cout << myVec[i] << " ";
}
vector<int>::iterator q = std::find_if(myVec.begin(), myVec.end(), isOdd);
cout << setw(3) << "first odd = " << *q << endl;
}
上面的程序总是输出 vector 的第一个数字,而不是在 isOdd 函数中。我正在使用 MacOSX 并使用 g++ odd.cpp
请帮忙
最佳答案
问题出在这些行中:
vector<int> myVec;
myVec.reserve(20);
std::vector::reserve()
为 20 个元素保留内存,但不改变 vector 大小。通过 std::vector::operator[]
访问这些元素似乎对您“有效”,但当您访问超出范围的元素时会导致 UB。您可以检查是否将其替换为验证索引的 std::vector::at()
。
只需将这两行替换为:
vector<int> myVec( 20 );
这将创建包含 20 个元素等于 0 的 vector 。
注意:你的循环不应该使用魔数(Magic Number),应该写成:
for(size_t i = 0; i < myVec.size(); i++)
如果你写得正确,你会立即注意到这个问题。
注意 2:无法保证您会得到任何奇数,因此您必须在取消引用之前验证 std::find_if
返回的迭代器。
关于c++ - find_if 总是给出第一个元素而不进入 isOdd 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47817979/
我正在尝试在 1 文件 .cpp 文件中构建以下代码块: #include #include using namespace std; class test { public: int a
我正在尝试了解 find_if 函数的工作原理,并且我正在按照此引用中的示例进行操作: http://www.cplusplus.com/reference/algorithm/find_if/ 当我
我根据第一个字母从数组中查找所有字符串: #include #include #include int main(){ const std::string strArray[] = {"an","b
所以我有一个名为 Song 的类,还有一个名为 SongLibrary 的类。歌曲库仅包含一组所有歌曲和适当的方法。 我目前正在尝试制作一个搜索歌曲库并检查歌曲是否具有特定标题的功能。 我遇到的问题是
我第一次在 C++ 代码中使用 std::find_if 函数。我想要执行的示例和逻辑非常简单,但不知何故我无法使其工作。 我以这种方式创建了“finder”类: /** * @class m
#include #include using namespace std; int main() { int matrix[9] = { 1,0,0,0,1,0,0,0,5 };
在我的 main.cpp 中: using namespace std; #include #include #include #include #include #include #in
我遇到过 set::find 不是查找对象的正确方法的情况,因为我找到对象的方式(通过 std::find_if)不同于它在集合中的排序方式。我没有找到任何关于以这种方式查找元素的复杂性信息。我假设它
我收到错误: no matching function for call to ‘findByPosition::findByPosition(std::vector::size_type&, std
如何检查 find_if 是否找到匹配项?当我尝试下面的代码时: SparseMatrix& SparseMatrix::operator+=(const SparseMatrix &other) {
在 std::vector 中,我想找到最大数小于某个数的元素的位置。例如: v = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} 我想找到一个最大小于 8 的数字。那个数字是 7。
我有一个填充字符串 vector 的实例方法。我试图找到包含特定子字符串的一个 vector 条目(目前,该子字符串是固定的 - 简单)。 我有一个.h: namespace Data { names
下面的代码有什么问题?如果结构的第一个成员等于 0,它应该在结构列表中找到一个元素。编译器提示 lambda 参数不是谓词类型。 #include #include #include #incl
谓词函数: bool Schedule::predicateFunc(map,pair >::iterator it,string &a) { return (it->first).first
使用 std::find_if 我们可以找到一个元素是否存在于普通的一维数组中。 灵感来自 this question ,我想知道,我们是否可以提供一个算法函数来检查任何类型和任意数量元素的二维数组(
我正在尝试在具有 Lambda 表达式的函数中使用 find_if。我想获取 vector 的最后一个迭代器,但我不确定如何编写它。 我可以用这段代码得到第一个迭代器。在这段代码中,struct 有一
这是我的代码片段: #include #include #include using namespace std; bool next(int j) { return(j>m; int
我正在研究从另一个 SO 帖子中获得的以下示例。示例是这样的 class checker { public: bool operator()(unsigned int i) {
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
对于从 find_if 到对象的映射指针,我应该使用示例 1 还是示例 2哪个最好? struct test { INT id } std::vector> vec; int ID = 75; au
我是一名优秀的程序员,十分优秀!