主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
hellokitty1679
2024年9月8日 16:16
删除字符串2 题解:C
P1027
回复 0
|
赞 0
|
浏览 335
#include<stdio.h> #include<string.h> int main(void) { char a[101]; char b[101]; int m=0; scanf("%s",a); int len=strlen(a); for (int i=0;i<len;i++) &...
ccccccyes
2024年9月6日 21:51
删除字符串2 题解:
P1027
回复 0
|
赞 0
|
浏览 1.0k
// 字符串检测 //06/09/24 21:29 //06/09/24 21:51 #include <iostream> using namespace std; int main(){ string s; cin>>s; bool ju = false; for(int i = 0; i<s.size()-2; i++){ ju = false; //防止数组越界 if(s[i] == 'G' || s[i] == 'g'){ if(s[i+1] == 'Z' |...
myming
2024年7月21日 20:32
删除字符串2 题解:
P1027
回复 0
|
赞 0
|
浏览 363
#include<bits/stdc++.h> using namespace std; int main(){ string s,t,f; // getline(cin, s); s = "gzu"; getline(cin, t); string t_low = t; ...
我与代码的故事
2024年4月20日 15:21
删除字符串2 题解:
P1027
回复 0
|
赞 1
|
浏览 640
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); for(int i = 0; i < str.size(); i ++) { if((str[i] == 'g' || str[i] == 'G') && (str[i + 1] == 'z' || str[i + 1] == 'Z') && (str[i + 2] =='u' || str[i + 2]...
20082123
2024年3月29日 12:04
删除字符串2 题解:
P1027
回复 0
|
赞 0
|
浏览 707
暴力 #include<string> #include<iostream> using namespace std; int main(){ string s; int k1,k2,k3,k4,k5,k6,k7,k8; cin>>s; while(1){ ...
lingdongyang
2024年3月15日 16:41
删除字符串2 题解:
P1027
回复 0
|
赞 0
|
浏览 886
第一种 #include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char s[105]; char s_lower[105];//用来存放把输入的字符串全部变为小写 gets(s); int len = strlen(s);//输入字符串的长度 char d[3] = {'g','z','u'}; int f[105] = {0};//用来记录字符串,删除为1,不删除0,注意:如果不初始化则不为0 for (int i = 0;...
FCC
2024年3月15日 15:39
删除字符串2 题解:transform()函数+erase()函数(有
P1027
回复 0
|
赞 0
|
浏览 543
#include <bits/stdc++.h> using namespace std; int main(){ string str, str1; cin >> str; str1 = str; int pos = 0; /*tolower()函数是把字符串都转化为小写字母;toupper()函数是把字符串都转化为大写字母 transform(first,last,result,op); first是容器的首迭代器,last为容器的末迭代器,result为存放结果的容器,op为要进行操作的一元函数对象或sturct、c...
光明守护神
2024年3月13日 20:20
删除字符串2 题解:C++
P1027
回复 0
|
赞 0
|
浏览 814
#include<iostream> using namespace std; int main() { string s; cin >> s; for (auto i = 0; i < s.size() - 2; i++) { if ((s[i] == 'g' || s[i] == 'G') && (s[i + 1] == 'z' || s[i + 1] == 'Z') && (s[i + 2] == 'u' || s[i + 2] == 'U')) { s.erase(i,...
easymoney
2024年3月13日 15:29
删除字符串2 题解:
P1027
回复 0
|
赞 0
|
浏览 560
#include <stdio.h> #include <string.h> int main() { static char s[100]; gets(s); for (int i = 0;s[i] != '\0';i++) { if (!((s[i] == 'G' || s[i] == 'g') &&...
小酒
2024年3月11日 15:53
删除字符串2 题解:
P1027
回复 0
|
赞 0
|
浏览 727
1027解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; gets(a); //char b[105]={0}; int i,j; int l=strlen(a); for(i=0;i<l;i++)  ...
1
2
3
4
题目
删除字符串2
题解数量
35
发布题解
热门题解
1
简单易懂
2
简洁
3
1027字符串删除2(用string函数)
4
string.erase()
5
复杂度O(N),直接输出
6
删除字符串中的某些连续字符
7
思路简单-实现要注意细节
8
连续三字符判断
9
删除字符串2(C)
10
通过无差别处理后,筛选再输出