博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode-5150 Longest Chunked Palindrome Decomposition(段式回文)
阅读量:5232 次
发布时间:2019-06-14

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

1 #define _for(i,a,b) for(int i = (a);i < b;i ++) 2  3 bool judge(string s,int i,int j,int len) 4 { 5     _for(k,0,len) 6         if(s[i]!=s[j]) 7             return false; 8         else 9             i ++,j ++;10     return true;11 }12 class Solution13 {14     public:15         int longestDecomposition(string text)16         {17             int i = 0;18             int j = text.size()-1;19             int lastj = j;20             int rnt = 0;21             while(i

 

转载于:https://www.cnblogs.com/Asurudo/p/11297896.html

你可能感兴趣的文章
css选择器
查看>>
FASTSOCKET
查看>>
Python中__init__方法/__name__系统变量讲解
查看>>
挑战黑客极限:Pwn2Own 2015成史上“最难”黑客大赛
查看>>
javascript 的继承
查看>>
判断是否是微信浏览器的函数
查看>>
图像处理04
查看>>
SSH在MyEclipse 8.5下整合详细步骤 (Struts2.1+Spring3.0+Hibernate3.3)
查看>>
【生病要吃对水果】
查看>>
(转)Kettle命令行
查看>>
本地Eclipse连接HDFS进行简单的文件操作
查看>>
Uiautomator简介及其环境搭建、测试执行
查看>>
tomcat简单使用
查看>>
cnblogs 开通第一日
查看>>
RabbitMQ主题模式
查看>>
linearlayout水平靠右显示方法
查看>>
线程安全相关及ConcurrentHashMap总结
查看>>
ios native工程集成react-native的demo
查看>>
使用word时在方块中打钩
查看>>
1007 素数对猜想
查看>>