刘思萌lsm
刘思萌lsm
全部文章
分类
归档
标签
去牛客网
登录
/
注册
刘思萌lsm的博客
全部文章
(共16篇)
题解 | #计算表达式#
#include <iostream> #include <stack> using namespace std; int Priority(char ch) { if (ch == '#') { return 0; } else if (c...
2024-02-04
0
153
题解 | #找最小数#
#include <iostream> #include <algorithm> using namespace std; struct Number{ int x; int y; }; Number num[1000+10]; bool Compare(...
2024-02-01
0
150
题解 | #查找#
#include <iostream> #include <algorithm> using namespace std; int arr[100+10]; // string BinarySearch(int n,int number){ // int left ...
2024-02-01
0
194
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; struct Student{ int number; int score; }; bool Compare(Student x,St...
2024-02-01
0
130
题解 | #日期类#
#include <iostream> using namespace std; int daytab[2][13] = { {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0,31,29,31,30,31,30,31,31,30,31,30,31...
2024-01-29
0
171
题解 | #Day of Week#
#include <iostream> using namespace std; string week[8] = {"Monday", "Tuesday", "Wednesday", "Thursday",...
2024-01-29
0
174
首页
上一页
1
2
下一页
末页