wrdoct
wrdoct
全部文章
复习
面经(1)
题解(88)
归档
标签
去牛客网
登录
/
注册
wrdoct的博客
全部文章
/ 复习
(共44篇)
题解 | #表达式求值#
#include <iostream> #include <string> #include <stack> using namespace std; int calculate(int a, int b, char sym){ switch(sym){...
C++
2022-05-05
0
250
题解 | #四则运算#
#include <bits/stdc++.h> #include <iostream> #include <string> using namespace std; string changeKuohao(string& s){ for(in...
C++
2022-05-05
0
364
题解 | #字符串排序#
#include<bits/stdc++.h> using namespace std; int main(){ string str = ""; getline(cin, str); char out[1000]; int k = 0; ...
C++
2022-05-05
0
267
题解 | #购物单#
//背包问题 #include <iostream> #include <vector> #define max(x, y) (x) > (y) ? (x) : (y) using namespace std; int getMax(int x, int y){ ...
C++
动态规划
2022-05-02
0
278
首页
上一页
1
2
3
4
5
下一页
末页