牛客892810292号
牛客892810292号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客892810292号的博客
全部文章
(共18篇)
题解 | #简单计算器#
时间复杂度 O(n) ; 空间复杂度O(n) ; 记得要在字符串末尾添加‘$’ 作为 最低优先级的运算符, 以便与将栈内的运算符全部弹出去运算。 因为规则是只有在当前运算符的优先级 小于等于 栈顶的运算符的时候才会进行弹栈计算。 #include<bits/stdc++.h> using...
2024-08-13
0
77
题解 | #浮点数加法#
#include <bits/types/struct_tm.h> #include <cassert> #include <iostream> using namespace std; // 想法是在短的字符串前面补0 , 后面补0 补成一样长度的字符串。 ...
2024-08-11
0
79
题解 | #单词替换#
#include <iostream> #include<bits/stdc++.h> #include <sstream> using namespace std; int main() { vector<string > st ; ...
2024-08-09
0
87
题解 | #简单密码#
#include <iostream> using namespace std; int main() { string encrp, res ; while (getline(cin, encrp)) { if(encrp == "START...
2024-08-09
0
84
题解 | #找位置#
#include <climits> #include <iostream> #include<map> #include<bits/stdc++.h> #include<string> using namespace std; struc...
2024-08-09
0
75
题解 | #密码翻译#
#include <iostream> using namespace std; int main() { string encrp , res ; while(getline(cin , encrp)) { for(int i =0 ; i ...
2024-08-09
0
94
题解 | #手机键盘#
#include <iostream> #include <tuple> using namespace std; // keytable 当要二十六个字母映射为按键次数时,直接使用数组。 int keytable[26] = {1,2,3,1,2,3,1,2,3,1,2...
2024-08-08
0
104
题解 | #进制转换#
#include <bits/stdc++.h> #include <bits/types/struct_tm.h> #include <string> using namespace std; // 字符串做除发, 跟手写除法类似, 首先从字符左边一直到右边。 ...
2024-08-06
0
78
首页
上一页
1
2
下一页
末页