博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LIS的string用法
阅读量:6695 次
发布时间:2019-06-25

本文共 2044 字,大约阅读时间需要 6 分钟。

使用的是string里的find函数

stl大法好

#include
#include
#include
using namespace std;string in;string f[10000];int mf=1;void insert(int begin,int end,string value){ int l=begin,r=end; while(l
>in; insert(1,mf,in); } printf("%d",mf-1);}

还有洛谷用户大佬整理的find等一类函数的用法

//string类的查找函数:int find(char c, int pos = 0) const;//从pos开始查找字符c在当前字符串的位置int find(const char *s, int pos = 0) const;//从pos开始查找字符串s在当前串中的位置int find(const char *s, int pos, int n) const;//从pos开始查找字符串s中前n个字符在当前串中的位置int find(const string &s, int pos = 0) const;//从pos开始查找字符串s在当前串中的位置//查找成功时返回所在位置,失败返回string::npos的值int rfind(char c, int pos = npos) const;//从pos开始从后向前查找字符c在当前串中的位置int rfind(const char *s, int pos = npos) const;int rfind(const char *s, int pos, int n = npos) const;int rfind(const string &s,int pos = npos) const;//从pos开始从后向前查找字符串s中前n个字符组成的字符串在当前串中的位置,成功返回所在位置,失败时返回string::npos的值int find_first_of(char c, int pos = 0) const;//从pos开始查找字符c第一次出现的位置int find_first_of(const char *s, int pos = 0) const;int find_first_of(const char *s, int pos, int n) const;int find_first_of(const string &s,int pos = 0) const;//从pos开始查找当前串中第一个在s的前n个字符组成的数组里的字符的位置。查找失败返回string::nposint find_first_not_of(char c, int pos = 0) const;int find_first_not_of(const char *s, int pos = 0) const;int find_first_not_of(const char *s, int pos,int n) const;int find_first_not_of(const string &s,int pos = 0) const;//从当前串中查找第一个不在串s中的字符出现的位置,失败返回string::nposint find_last_of(char c, int pos = npos) const;int find_last_of(const char *s, int pos = npos) const;int find_last_of(const char *s, int pos, int n = npos) const;int find_last_of(const string &s,int pos = npos) const;int find_last_not_of(char c, int pos = npos) const;int find_last_not_of(const char *s, int pos = npos) const;int find_last_not_of(const char *s, int pos, int n) const;int find_last_not_of(const string &s,int pos = npos) const;//find_last_of和find_last_not_of与find_first_of和find_first_not_of相似,只不过是从后向前查找

转载于:https://www.cnblogs.com/Lance1ot/p/8504801.html

你可能感兴趣的文章
height()内容自适应,超出显示滚动条
查看>>
MySql模糊查询like通配符
查看>>
JDBC连接数据库步骤
查看>>
Shell脚本监控服务器pts登录情况记录为日志并邮件通知【CentOS 6.5】
查看>>
[leetcode] Jump Game II
查看>>
iOS开发技巧(系列十四:iOS7导航栏和iOS6的区别)
查看>>
Js针对window窗体大小设置
查看>>
MySQL 使用SELECT ... FOR UPDATE
查看>>
MYSQL级联查询,包括向上向下的级联
查看>>
Apache优化:修改最大并发连接数
查看>>
windows Socket 通信模型
查看>>
jquery validate案例1
查看>>
Redis应用场景
查看>>
不想工作的一天
查看>>
音效原理
查看>>
dom4j的生成xml并格式化输出
查看>>
Re-negotiation handshake failed: Not accepted b...
查看>>
价值百万的PPT是如何炼成的
查看>>
企业管理过程信息化自助开发平台架构研究与应用
查看>>
TDBadgedCell
查看>>