- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
java解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C++解法
- 解题思路
- 本题目要求从两组由逗号分隔的整数列表中找出它们的公共元素,并按照每个公共元素在两个列表中出现的最小次数进行排序输出。具体思路如下:
输入处理:
用户输入两行包含逗号分隔的整数序列。
统计频率:
对每个序列中的整数,统计它们的出现次数。
查找公共元素:
找出两个序列中共同出现的元素,并记录它们在每个序列中出现的次数。对于每个公共元素,记录它们在两个序列中出现的最小次数。
输出结果:
根据每个公共元素的最小次数,按从小到大的顺序输出这些元素。
#include
#include
#include
#include
#include
#include
using namespace std;
vector<int> parse(const string& in) {
vector<int> res;
stringstream ss(in);
string itm;
while (getline(ss, itm, ',')) {
res.push_back(stoi(itm));
}
return res;
}
map<int, int> countFreq(const vector<int>& arr) {
map<int, int> freq;
for (int n : arr) {
freq[n]++;
}
return freq;
}
map<int, set<int>> findCommon(const map<int, int>& m1, const map<int, int>& m2) {
map<int, set<int>> res;
for (const auto& it : m1) {
int n = it.first;
if (m2.count(n)) {
int cnt = min(it.second, m2.at(n));
res[cnt].insert(n);
}
}
return res;
}
void printResult(const map<int, set<int>>& resMap) {
if (resMap.empty()) {
cout << "NULL" << endl;
}
else {
for (const auto& it : resMap) {
cout << it.first << ":";
bool fst = true;
for (int n : it.second) {
if (!fst) cout << ",";
cout << n;
fst = false;
}
cout << endl;
}
}
}
int main() {
string l1, l2;
getline(cin, l1);
getline(cin, l2);
vector<int> a1 = parse(l1);
vector<int> a2 = parse(l2);
map<int, int> m1 = countFreq(a1);
map<int, int> m2 = countFreq(a2);
map<int, set<int>> resMap = findCommon(m1, m2);
printResult(resMap);
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
C解法
输入处理:
用户输入两行包含逗号分隔的整数序列,分别转换为两个整数数组。
统计频率:
对每个序列中的整数,统计它们的出现次数。
查找公共元素:
找出两个序列中共同出现的元素,并记录它们的最小出现次数。
排序并输出结果:
根据每个公共元素的最小出现次数,按从小到大的顺序输出这些元素
#include
#include
#include
#define MAX_SIZE 1000
int parse(const char* str, int* arr) {
int count = 0;
char* token = strtok(strdup(str), ",");
while (token != NULL) {
arr[count++] = atoi(token);
token = strtok(NULL, ",");
}
return count;
}
void count_freq(int* arr, int n, int* freq, int* count) {
for (int i = 0; i < n; i++) {
int found = 0;
for (int j = 0; j < *count; j++) {
if (freq[2 * j] == arr[i]) {
freq[2 * j + 1]++;
found = 1;
break;
}
}
if (!found) {
freq[2 * (*count)] = arr[i];
freq[2 * (*count) + 1] = 1;
(*count)++;
}
}
}
void find_common(int* freq1, int count1, int* freq2, int count2, int* result, int* result_count) {
for (int i = 0; i < count1; i++) {
for (int j = 0; j < count2; j++) {
if (freq1[2 * i] == freq2[2 * j]) {
int min_count = freq1[2 * i + 1] < freq2[2 * j + 1] ? freq1[2 * i + 1] : freq2[2 * j + 1];
result[2 * (*result_count)] = min_count;
result[2 * (*result_count) + 1] = freq1[2 * i];
(*result_count)++;
break;
}
}
}
}
void print_result(int* result, int result_count) {
if (result_count == 0) {
printf("NULL\n");
}
else {
for (int i = 0; i < result_count - 1; i++) {
for (int j = i + 1; j < result_count; j++) {
if (result[2 * i] > result[2 * j] ||
(result[2 * i] == result[2 * j] && result[2 * i + 1] > result[2 * j + 1])) {
int temp1 = result[2 * i];
int temp2 = result[2 * i + 1];
result[2 * i] = result[2 * j];
result[2 * i + 1] = result[2 * j + 1];
result[2 * j] = temp1;
result[2 * j + 1] = temp2;
}
}
}
for (int i = 0; i < result_count; i++) {
if (i == 0 || result[2 * i] != result[2 * (i - 1)]) {
if (i > 0) {
printf("\n");
}
printf("%d:", result[2 * i]);
}
printf("%d", result[2 * i + 1]);
if (i != result_count - 1 && result[2 * (i + 1)] == result[2 * i]) {
printf(",");
}
}
printf("\n");
}
}
int main() {
char line1[MAX_SIZE], line2[MAX_SIZE];
fgets(line1, MAX_SIZE, stdin);
fgets(line2, MAX_SIZE, stdin);
int arr1[MAX_SIZE], arr2[MAX_SIZE];
int n1 = parse(line1, arr1);
int n2 = parse(line2, arr2);
int freq1[2 * MAX_SIZE], freq2[2 * MAX_SIZE];
int count1 = 0, count2 = 0;
count_freq(arr1, n1, freq1, &count1);
count_freq(arr2, n2, freq2, &count2);
int result[2 * MAX_SIZE];
int result_count = 0;
find_common(freq1, count1, freq2, count2, result, &result_count);
print_result(result, result_count);
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
JS解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: