博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU-6170 Two strings
阅读量:6265 次
发布时间:2019-06-22

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

. 匹配任意字符,x* 匹配任意长度的 x (x 为任意字符,长度可以为 0 )

正则表达式

#include 
#include
#include
#include
#include
#include
const int MAX_N = 3e3 + 7;char s1[MAX_N], s2[MAX_N],sr[MAX_N * 1000];inline bool solve() { gets(s1); gets(s2); std::regex rx("\\.\\*"); char fmt[] = "(.)\\1*"; *std::regex_replace(sr, s2, s2 + strlen(s2), rx, fmt) = '\0'; return regex_match(s1,std::regex(sr)); return false;}int main() { int T; scanf("%d", &T); getchar(); while(T--) puts(solve() ? "yes" : "no"); return 0;}
  • 需要 sys/types.h , regex
  • regex_replace(s,first,last,rgx,tmt,flags) 目标地址,源首,源末,替换目标,替换内容,
  • regex_match(s,rgx) 源,匹配内容

转载于:https://www.cnblogs.com/Forgenvueory/p/7418315.html

你可能感兴趣的文章
Linux 比较重要且难掌握命令 集合
查看>>
C#基本概念列举说明
查看>>
如何有效使用Project(2)——进度计划的执行与监控
查看>>
iOS 工作遇到问题记录
查看>>
Android 中屏幕点击事件的实现
查看>>
做为一个前端工程师,是往node方面转,还是往HTML5方面转
查看>>
spark 安装配置
查看>>
图片裁剪和异步上传插件--一步到位(记录)
查看>>
在Vs2012 中使用SQL Server 2012 Express LocalDB打开Sqlserver2012数据库
查看>>
【分享】博客美化(7)推荐几个优秀的自定义博客
查看>>
人工智能和机器学习领域的一些有趣的开源项目
查看>>
python sorted排序
查看>>
python中xrange和range的异同
查看>>
PHP根据ASCII码返回具体的字符
查看>>
atitit.系统架构图 的设计 与工具 attilax总结
查看>>
URAL 1774 A - Barber of the Army of Mages 最大流
查看>>
处理器(CPU)调度问题
查看>>
leetcode - 位运算题目汇总(下)
查看>>
多少个矩形被覆盖
查看>>
22、ASP.NET MVC入门到精通——搭建项目框架
查看>>