lll宁
lll宁
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
lll宁的博客
全部文章
(共2篇)
题解 | #点菜问题#
#include<iostream> using namespace std; const int MAXN=1000+10; int weight[MAXN];//钱数 int value[MAXN];//评价 int dp[MAXN]; int main(){ &nbs...
C++
2022-03-18
0
387
题解 | #二叉树遍历#
#include<iostream> using namespace std; struct btree{ char data; btree* leftchild; btree* rightchild; ...
C++
2022-03-12
0
309