Fuyuyu_Yuzu_Suki
Fuyuyu_Yuzu_Suki
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Fuyuyu_Yuzu_Suki的博客
TA的专栏
78篇文章
0人订阅
华为机试刷题记录
78篇文章
424人学习
全部文章
(共102篇)
题解 | #计算日期到天数转换#
来自专栏
#include <iostream> using namespace std; #include <vector> int main() { int year, month, day; cin >> year >> month >...
2023-03-16
0
254
题解 | #百钱买百鸡问题#
来自专栏
#include <iostream> using namespace std; int main() { int a; cin >> a; for(int x = 0; x <= 14; x++){ if((100 - ...
2023-03-16
0
266
题解 | #字符串通配符#
来自专栏
#include <iostream> using namespace std; #include <string> #include <vector> #include <cctype> bool chCop(char a, char b) { ...
2023-03-15
0
277
题解 | #矩阵乘法计算量估算#
来自专栏
#include <iostream> using namespace std; #include <stack> #include <string> #include <vector> int caculate(int x, int y, int z...
2023-03-13
0
239
题解 | #矩阵乘法#
来自专栏
#include <iostream> using namespace std; #include <vector> void in(vector<vector<int>> &a, int x, int y) { for (int i = 0...
2023-03-13
0
239
题解 | #成绩排序#
来自专栏
#include <iostream> using namespace std; #include <list> #include <string> // 降序 bool sortD(pair<string, int> s1, pair<str...
2023-03-13
1
290
题解 | #24点游戏算法#
来自专栏
#include <iostream> using namespace std; #include <vector> bool dfs(const vector<double> &nums, double num, vector<bool> numU...
2023-03-13
0
424
题解 | #配置文件恢复#
来自专栏
#include <iostream> using namespace std; #include <string> #include <map> #include <sstream> void func(string str) { if (...
2023-03-13
0
264
题解 | #MP3光标位置#
来自专栏
#include <iostream> using namespace std; #include <list> #include <string> int main() { int num; string cmd; cin >>...
2023-03-12
0
220
题解 | #DNA序列#
来自专栏
#include <iostream> using namespace std; #include <string> int main() { string str; int len; getline(cin, str); cin >&g...
2023-03-12
0
248
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页