KimKitsuragi
KimKitsuragi
全部文章
分类
归档
标签
去牛客网
登录
/
注册
KimKitsuragi的博客
全部文章
(共28篇)
题解 | #浮点数加法#
先将长短可能不一的两数对齐(补零);然后利用串行进位加法器的方法,由低位到高位逐位计算,先算小数部分再算整数部分 #include <iostream> #include <algorithm> using namespace std; void alignInt(strin...
2024-01-14
0
216
题解 | #首字母大写#
按行读取。对于字符串第一个字符,直接判断是否需要大写;遍历后续字符,遇到特殊字符时,对特殊字符的下一个字符进行判断;同时输出当前读到的字符。 #include <iostream> using namespace std; int main() { string str; ...
2024-01-13
0
196
题解 | #单词替换#
基本思路:对输入串进行预处理,将字符串切分为单词,存入迭代器;然后遍历迭代器,将单词逐个与目标词对比,判断是否需要替换,同时输出;为了处理过程正确性,需要给输入串末尾添上空格。 #include <iostream> #include <vector> using names...
2024-01-13
0
242
题解 | #skew数#
#include <iostream> #include <cmath> using namespace std; int main() { string str; while(cin>>str){//输入数据用字符串存储 int ...
2024-01-12
0
180
题解 | #字母统计#
这道题直接让我回到了几年前学大计基在主楼机房敲代码的那个午后感觉方法应该是最简的了 #include <iostream> using namespace std; int main() { int chs[26]={0};//直接用数组下标表示字符在字母表中的位置 st...
2024-01-12
0
197
题解 | #统计字符#
思路直白,肯定还有更好的方法 #include <iostream> using namespace std; struct cCount{ char ch; int num; }; int main() { string cstr,str; while ...
2024-01-12
0
196
题解 | #简单密码#
提交的输入格式与自测的格式不一致,按实际的修改外层循环终止条件就行。 #include <iostream> using namespace std; int main() { string str; getline(cin, str); //读取一行,丢弃\n ...
2024-01-12
0
190
题解 | #特殊乘法#
#include <iostream> using namespace std; int main() { int a, b; int ans; while (cin >> a >> b) { ans=0; ...
2024-01-10
0
191
题解 | #找位置#
#include <iostream> #include <vector> #include <map> using namespace std; struct statis{ int count; vector<int> index;...
2024-01-10
0
205
题解 | #小白鼠排队#
#include <iostream> #include <algorithm> using namespace std; #define MAX 100 struct rat{//常规方法,足够了 int weight; string hat; }; boo...
2024-01-08
0
193
首页
上一页
1
2
3
下一页
末页