转自:https://github.com/jianbing/awesome-game-tester 收集整理了游戏测试人员工作相关的一些资源清单,包括学习资料,测试工具,开源框架,效率工具等。 学习资料 视频 游戏测试入门(张敬峰) 游戏测试从入门到精通 书籍 软件测试的艺术(原书第3版)(软件测 ...
分类:
其他好文 时间:
2018-09-22 16:05:59
阅读次数:
394
In a world where ordinary people cannot reach, a boy named "Koutarou" and a girl named "Sena" are playing a video game. The game system of this video ...
分类:
其他好文 时间:
2018-09-21 10:46:32
阅读次数:
177
####python的面向对象### 1.面向对象的三个特征:封装,继承,多态 2.多态:不同的子类对象调用相同的方法,产生不同的执行结果 示例: class Dog(object): def __init__(self,name): self.name = name def game(self): ...
分类:
编程语言 时间:
2018-09-20 23:30:13
阅读次数:
298
题意:有n个石子堆,每一个都可以轮流做如下操作:选一个石堆,移除至少1个石子,然后可以把这堆石子随便拿几次,随便放到任意的其他石子数不为0的石子堆,也可以不拿。不能操作败。 思路:我们先来证明,如果某个石子数有偶数堆,则先手必败,因为无论先手怎么做,后手都能模仿先手,最后把石子取光。显然全是偶数堆是 ...
分类:
其他好文 时间:
2018-09-20 23:29:18
阅读次数:
194
55. Jump Game Given an array of non negative integers, you are initially positioned at the first index of the array. Each element in the array represe ...
分类:
其他好文 时间:
2018-09-19 21:42:23
阅读次数:
152
Preface 多校第二场,依靠罚时优势打到了校内的 Rank 2 ~~暴力分块碾标算系列~~ T4 Game 题目大意:在一个数集$[1,n]$中两个人轮流选择其中的一个数,并从数集中删去这个数所有 约数 。先将所有数删去的人获胜。 比赛的时候手玩了$n using namespace std; ...
分类:
其他好文 时间:
2018-09-19 14:53:51
阅读次数:
168
计算几何基础 Jack Straws(POJ 1127) 原题如下: Jack Straws Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 5494 Accepted: 2504 Description In the game ...
分类:
其他好文 时间:
2018-09-18 23:54:14
阅读次数:
231
```python
class Province: #静态字段--属于类,调用方法类.字段名 memo = "中国23个省之一" #动态字段--属于对象,调用方式实例化对象.字段名 def __init__(self, name, capital, leader): self.Name = name... ...
分类:
编程语言 时间:
2018-09-18 13:07:36
阅读次数:
156
【传送门】http://codeforces.com/problemset/problem/813/C 【题意】给定整数a,b,c,s,求使得 xa yb zc值最大的实数 x,y,z , 其中x + y + z <= s. (1?≤?S?≤?103 , 0?≤?a,?b,?c?≤?103) 【题解 ...
分类:
其他好文 时间:
2018-09-18 00:33:48
阅读次数:
218
Game Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1340 Accepted Submission(s): 891 Problem Des ...
分类:
其他好文 时间:
2018-09-18 00:33:03
阅读次数:
197