字符串区间比较

Posted zhanghua-322

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串区间比较相关的知识,希望对你有一定的参考价值。

#include<iostream>
using namespace std;
int main()

	int i, j,n;
	string s1, s2,a1,a2;
	cin >> i >> j;
	cin >> s1 >> s2;
	a1 = s1[i-1];
	a2 = s2[i-1];
	for (n = i-1; n < j; n++)
	
		a1 += s1[n];
		a2 += s2[n];
	
	if (a1 == a2)
		cout << "yes" << endl;
	else
		cout << "no" << endl;
	return 0;

  

以上是关于字符串区间比较的主要内容,如果未能解决你的问题,请参考以下文章

HDU4362 Palindrome subsequence (区间DP)

js 日期比较大小,js判断日期是否在区间内,js判断时间段是否在另外一个时间段内

poj2955 区间DP

ZYB玩字符串

POJ 3280 Cheapest Palindrome(区间DP求改成回文串的最小花费)

如何在JS中中文字符串如何比较