1 Star 0 Fork 0

Ronin-yue/STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myfind.cpp 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ronin-yue 提交于 2021-11-17 16:00 . myfind
#include <iostream> // std::cout
#include <algorithm> // std::find
#include <vector> // std::vector
#include<string.h>
using namespace std;
int main()
{
//find() 函数作用于普通数组
char stl[] = "yuexiangyu";
//调用 find() 查找第一个字符 'c'
char *p = find(stl, stl + strlen(stl), 'x');
//判断是否查找成功
if (p != stl + strlen(stl))
{
cout << p << endl;
}
//find() 函数作用于容器
vector<int> myvector{10, 20, 30, 40, 50};
vector<int>::iterator it;
it = find(myvector.begin(), myvector.end(), 30);
if (it != myvector.end())
cout << "find success:" << *it;
else
cout << "find faule";
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Ronin-yue/STL.git
git@gitee.com:Ronin-yue/STL.git
Ronin-yue
STL
STL
master

搜索帮助