主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
中国人民万岁
2024年3月23日 23:04
字符串的差 题解:删除a中重复后进行字符串移动 已更新100% a中字
P1832
回复 2
|
赞 0
|
浏览 478
#include <bits/stdc++.h> using namespace std; int main() { string a, b; getline(cin, a); getline(cin, b); int na = a.size(); int nb = b.size(); int cnt = 0; &...
小王桐学
2024年2月28日 22:06
字符串的差 题解:C
P1832
回复 0
|
赞 0
|
浏览 493
#include <stdio.h> #include <string.h> int main() { int i,j,flag; char s[1000],t[1000]; gets(s); gets(t); for(i = 0; i < strlen(s); i++) { j = 0; flag = 0; while(j < strlen(t)) { if(s[i] == t[j]) { flag = 1; break; } j++...
James
2021年3月20日 21:00
这里的删除是指b中有的字符a中不能出现
P1832
回复 0
|
赞 0
|
浏览 8.6k
#include <iostream> #include <algorithm> #include <stack> #include <string.h> #include <stdio.h> #include <queue> #include <math.h> using namespace std; string a,b; int vis[26]; int main(){ cin>>a>>b;  ...
题目
字符串的差
题解数量
3
发布题解
热门题解
1
字符串的差 题解:C
2
字符串的差 题解:删除a中重复后进行字符串移动 已更新100% a中字符删除后直接跳到a的下一个字符,避免重复删除造成移动
3
这里的删除是指b中有的字符a中不能出现