主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
zx142407789
2024年3月27日 23:18
单词替换 题解:自用笔记(C语言)
P1196
回复 0
|
赞 0
|
浏览 433
#include<stdio.h> #include<string.h> int main() { char str[20][100];//采用二维数组,以一个字符串为一个数据元素,看成字符串数组 char s1[101]; char s2[101]; int k = 0;//k个单词 int m = 0; char ch;...
DestinyCares+++
2024年2月19日 17:09
单词替换 题解:字符数组
P1196
回复 0
|
赞 0
|
浏览 614
#include<iostream> #include<string> using namespace std; const int maxn = 1e5 + 10; string s[maxn]; int main() { int len = 0; while (cin>>s[len]) { len++; } &n...
zjx140
2021年9月12日 13:13
C
P1196
回复 0
|
赞 0
|
浏览 5.7k
#include<stdio.h> #include<string.h> int main(){ char s[100], a[100], b[100]; while(gets(s) && gets(a) && gets(b)){ int start_pos = 0; int end_pos = 0; while(end_pos < strlen(s)){ while(s[end_pos] != ' ' &&am...
James
2021年3月17日 19:52
用find找到位置然后跳过输出
P1196
回复 0
|
赞 1
|
浏览 7.6k
#include <iostream> #include <algorithm> #include <string> #include <string.h> #include <stdio.h> using namespace std; string s; string t; string p; int main(){ while(getline(cin,s)){ getline(cin,t); getline(cin...
sincerely_LM
2021年3月13日 22:12
字符串暴力匹配,利用str.erase 和 str.insert 来完
P1196
回复 0
|
赞 0
|
浏览 7.7k
#include <iostream> #include <string> using namespace std; int main(int argc, char const *argv[]) { string str1,str2,str3; int i,j,rem,m; int Rem[1000]={0}; while(getline(cin,str1)){ m=0; for(int i;i<1000;i++){ Rem[i]=0; } getline(cin,str...
Timtam
2021年2月20日 17:02
string类做法
P1196
回复 0
|
赞 1
|
浏览 7.8k
#include<bits/stdc++.h> using namespace std; int main(){ string s,oranginal,substitue; while(getline(cin,s)&&cin>>oranginal>>substitue){ for(int i=0;i<s.size()-oranginal.size()-1;i++){ string substr=s.substr(i,orangina...
莫小七
2020年3月14日 20:03
1196 单词替换 c++(新的单词分割法)
P1196
回复 0
|
赞 3
|
浏览 13.2k
#include<iostream> #include<cstring> #include<string> #include<vector> using namespace std; int main() { string s, a, b; vector<string> v; do {//分割单词填装进vector中,当输入回车就结束循环 cin >> s; v.push_back(s); } while (cin.get() != '\n'); cin &g...
题目
单词替换
题解数量
7
发布题解
热门题解
1
1196 单词替换 c++(新的单词分割法)
2
用find找到位置然后跳过输出
3
string类做法
4
字符串暴力匹配,利用str.erase 和 str.insert 来完成替换(替换=删除+插入)
5
C
6
单词替换 题解:字符数组
7
单词替换 题解:自用笔记(C语言)