C++判断字符是否相等

验证子串

输入:

abc
dddncabca

输出:

abc is substring of dddncabca

输入:

aaa
bbb

输出:

No substring

若第一个串 𝑠1​ 是第二个串 𝑠2​ 的子串,则输出(s1) is substring of (s2)

否则,若第二个串 𝑠2​ 是第一个串 𝑠1 的子串,输出(s2) is substring of (s1)

否则,输出 No substring

关键代码:string 库里的函数

 if(a.find(b) != a.npos)  //如果b是a的子串 

  if(b.find(a) != b.npos)  //如果a是b的子串 

#include<bits/stdc++.h>
#include <iostream>
using namespace std;
int main() {
    string a,b;
    cin>>a>>b;
    if(a.find(b) != a.npos)  //如果b是a的子串 
      cout<<b<<" is substring of "<<a<<endl;
      if(b.find(a) != b.npos)  //如果a是b的子串 
       cout<<a<<" is substring of "<<b<<endl;
       else
         cout<<"No substring"<<endl;
    return 0;
}

也可以是

#include<iostream>
#include<cstring>
using namespace std;
int main()
{
	char a[25],b[25];
	cin>>a>>b;
	if(strstr(a,b)!=NULL)
		cout<<b<<" is substring of "<<a;
	else if(strstr(b,a)!=NULL)
		cout<<a<<" is substring of "<<b;
	else
		cout<<"No substring";
	return 0;
}

  • 8
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值