1、意图 定义一个用于创建对象的接口,让子类决定实例化哪一个类。Factory Method 使一个类的实例化延迟到其子类。 2、结构 3、参与者 Product——定义工厂方法所创建对象的接口。 ConcreteProduct——实现Product接口 Creator——声明工厂方法,该方法返回一 ...
分类:
其他好文 时间:
2020-04-13 22:52:44
阅读次数:
80
1、意图 提供一个创建一系列相关或相互依赖对象的接口,而无需指定他们具体的类。 2、结构 3.参与者 AbstractFactory——声明一个可以创建抽象产品对象的操作接口; ConcreteFactory——实现创建具体产品对象的操作; AbstractProduct——为一类产品对象声明一个接 ...
分类:
其他好文 时间:
2020-04-12 21:02:05
阅读次数:
80
国外比赛,做着玩 官方wp:https://github.com/tghack/tg20hack RE1: Game of Keys 题目提供了两个文件,一个PYC文件,一个wordlist.txt 在线pyc反编译:http://tools.bugscaner.com/decompyle/ imp ...
分类:
其他好文 时间:
2020-04-12 14:27:04
阅读次数:
360
D. Dahlia The Champion Lowie is creating a new champion in the critically acclaimed game LoL (Land of Literacy). Named it Dahlia, he planned that the ...
分类:
其他好文 时间:
2020-04-11 13:20:17
阅读次数:
99
C. Game with Chips time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Petya has a rectangula ...
分类:
其他好文 时间:
2020-04-11 13:14:22
阅读次数:
62
In an n x n chessboard, Prince and Princess plays a game. The squares in the chessboard are numbered 1, 2, 3 ... n*n, as shown below:Prince stands in ...
分类:
其他好文 时间:
2020-04-09 12:37:11
阅读次数:
87
嘤嘤嘤,我又来了,刚A完就写,这个沙雕题有丶恶心 题目: In an n×n chessboard, Prince and Princess plays a game. The squares in the chessboard are numbered 1, 2, 3, . . . , n?n, ...
分类:
其他好文 时间:
2020-04-09 00:58:08
阅读次数:
300
GitHUB:https://github.com/daozhangXDZ/DZGameEngine 后续再把DZProgrameNote公开,正在批处理过程中。一堆markdown. MARKDOWN: ...
分类:
其他好文 时间:
2020-04-08 09:26:34
阅读次数:
58
主循环: while mRunning: for event in pygame.event.get(): if event.type == pygame.QUIT: mRunning=False pygame.quit()必须要写成event.type要不退不出去,不生效 ...
分类:
其他好文 时间:
2020-04-07 18:16:48
阅读次数:
62
https://leetcode-cn.com/problems/stone-game-iii/ 题意:有n个数,有两个人,轮流取数,每次可以取前1、2、3个数,取到最后,谁的和大谁赢。 思路:类似上一篇,把数的大小看作收益,自己收益为x,别人收益为y,纯收益x-y。 不同取法都会对后面造成影响,但 ...
分类:
其他好文 时间:
2020-04-06 23:44:10
阅读次数:
97