结构体、动态处理、qsort()函数的综合运用(C语言) 摘要:解题思路:结构体的运用将数字和其出现次数捆绑起来。动态处理的思想有效节省时间和空间。qsort()函数的调用简化排序部分的代码注意事项:参考代码:#include<stdio.h> typedef …… 题解列表 2024年07月11日 0 点赞 0 评论 228 浏览 评分:9.9
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月11日 0 点赞 0 评论 167 浏览 评分:0.0
解 2846: 统计数字字符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char a[1005];int main(){ int sum=0; cin.g…… 题解列表 2024年07月11日 0 点赞 0 评论 228 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e5;char a[N];int main(){ …… 题解列表 2024年07月11日 0 点赞 0 评论 316 浏览 评分:0.0
机器人繁殖(C语言)——别用long!不然时间也很long。 摘要:解题思路:第一种思路:把这看做一道数学题,写出通项找规律,直接得到公式。在下数学不好,想了想就转战第二种思路了。第二种思路:利用计算机的能力,遍历第一年的机器人数量,依据题意得出n年后的数量,比较后得…… 题解列表 2024年07月11日 0 点赞 0 评论 135 浏览 评分:0.0
编写题解 1010: [编程入门]利润计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int x,y; cin>>x;//利润 if(x<=100…… 题解列表 2024年07月11日 1 点赞 0 评论 420 浏览 评分:0.0
1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:题目描述:编写一个程序,输入一个字符串(长度不超过80),然后统计出该字符串当中包含有多少个单词。 例如:字符串“this is a book”当中包含有4个单词…… 题解列表 2024年07月12日 0 点赞 0 评论 285 浏览 评分:9.9
1174: 计算直线的交点数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; while (cin >> n) { int dp[2…… 题解列表 2024年07月12日 0 点赞 0 评论 235 浏览 评分:0.0
2846: 统计数字字符个数 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e5; char a[N]; int ma…… 题解列表 2024年07月12日 0 点赞 0 评论 266 浏览 评分:0.0
题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char c[32],l,k;int main(){ cin>>c; …… 题解列表 2024年07月12日 0 点赞 0 评论 154 浏览 评分:9.9