1 #include<iostream> 2 #include<stack> 3 #include<queue> 4 #include<string> 5 using namespace std; 6 int main(){ 7 int t,n,temp; 8 cin>>t; 9 while(t-- ...
分类:
其他 时间:
2020-05-01 00:00:58
收藏:
0 评论:
0 赞:
0 阅读:
53
交互 面向对像都是面向的抽象对象,而不是具体的,这一点很重要。 攻击者和被攻击者 攻击者可以抽象成CanAttack,被攻击者抽象出来CanBeAttacked。另外只有被其它类或对象调用的方法才可以成为抽象方法。 抽象出来的对象要确定其为谁服务的(即为谁抽象,一般从上往下考虑,而不是从他的子类的角 ...
分类:
其他 时间:
2020-05-01 00:00:43
收藏:
0 评论:
0 赞:
0 阅读:
77
博弈问题动态规划通用思路 转载:来自大佬https://leetcode-cn.com/problems/stone-game/solution/jie-jue-bo-yi-wen-ti-de-dong-tai-gui-hua-tong-yong/ 该问题主要是如何设计dp数组,其次是动态转移方程 ...
分类:
其他 时间:
2020-05-01 00:00:14
收藏:
0 评论:
0 赞:
0 阅读:
63