主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
可可爱爱草莓派
2024年7月21日 12:13
变位词 题解:用map<char,int>
P1032
回复 0
|
赞 0
|
浏览 326
#include<bits/stdc++.h> using namespace std; int main(){ int n; char ch; cin >> n; string s1,s2; while (n > 0){ n -= 1; map<char,int>...
yanmy
2024年3月23日 19:32
变位词 题解:统计各字母数量
P1032
回复 0
|
赞 0
|
浏览 534
#include <stdio.h> #include <string.h> int main() { int n; scanf("%d", &n); while (n--) { char a[1000], b[1000]; int a1[26] = {0}, b1[26] = {0}; scanf("%s %s", a, b); int lena = strlen(a), lenb = strlen(b), flag = 1; ...
遨游
2024年3月22日 21:59
变位词 题解:先sort()排序再比较
P1032
回复 0
|
赞 0
|
浏览 445
#include <iostream> #include <string> #include <algorithm> using namespace std; bool judge(string s1,string s2){ sort(s1.begin(),s1.end());//排序后比较 sort(s2.begin(),s2.end()); if(s1==s2) &nbs...
huanghu
2024年3月22日 01:10
变位词 题解:C++ sort排序 去重 用map匹配出现次数
P1032
回复 0
|
赞 0
|
浏览 627
#include<stdio.h> #include<iostream> #include<vector> #include<string.h> #include<string> #include<algorithm> #include<map> using namespace std; int main(){ int n; cin>>n; while(n--){ //初始化两个map map<char,int> myMa...
chenxi
2024年3月11日 22:10
变位词 题解:用全排列
P1032
回复 0
|
赞 0
|
浏览 526
#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> #include <time.h> #include <algorithm> #include <iostream> #include <queue> #include <stack> #include <vector> #include <string> #include <m...
damowanghwj
2024年3月6日 18:49
变位词 题解:map实现哈希表 有点麻烦
P1032
回复 0
|
赞 0
|
浏览 386
#include<cstdio> #include<iostream> #include<string> #include<map> using namespace std; map<char,int> myMap = { {'a',1}, {'b',2},{'c',3},{'d',4},{'e',5} ,{'f',6},{'g',7},{'h',8}...
小王桐学
2024年2月11日 21:26
变位词 题解:c-排序直接比较大小
P1032
回复 0
|
赞 1
|
浏览 548
#include <stdio.h> #include <string.h> void Sort(char *s) { int i,j; char c; for(i = 0; i < strlen(s)-1; i++) for(j = 1; j < strlen(s)-i; j++) if(s[j] < s[j-1]) { c = s[j]; s[j] = s[j-1]; s[j-1] = c; } } int main() { char s1[1...
Hegel
2023年3月28日 21:12
输入字符串s1与s2,比较字符串s2是否为字符串s1变换而来
P1032
回复 0
|
赞 1
|
浏览 1.9k
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { string s1,s2; cin >> s1 >> s2; int a[26] = { 0 }, b[26] = { 0 }; for (int i = 0; i < s1.size(); i++) a[s1[i] - 'a']...
Sonder
2022年2月27日 17:31
变位词-哈希表
P1032
回复 0
|
赞 0
|
浏览 5.1k
#include <iostream> #include <cstring> #include <algorithm> #include <unordered_map> using namespace std; int main() { int n; cin >> n; while (n -- ) { string a,b; ...
hijack
2020年7月19日 09:22
变位词(先排序再比较)
P1032
回复 0
|
赞 1
|
浏览 9.8k
#include <iostream> #include <cstring> using namespace std; void bubble(char s1[]); int main() { int n; cin >> n; char s1[100], s2[100]; while(n--) { cin >> s1 >> s2; int len1 = strlen(s1); int len2 = strlen(s2); int flag_bw = 0; //变为词标记,...
1
2
题目
变位词
题解数量
14
发布题解
热门题解
1
变位词(先排序再比较)
2
题解:变位词
3
输入字符串s1与s2,比较字符串s2是否为字符串s1变换而来
4
变位词 题解:c-排序直接比较大小
5
Accepted答案-变位词(C)
6
变位词 题解:C++ sort排序 去重 用map匹配出现次数
7
变位词 题解:用全排列
8
变位词(c++)
9
变位词 题解:先sort()排序再比较
10
题解