题目描述:许多人客人坐在圆桌上把花传递给旁边的人。某一时刻K传花停止,这个时候花在谁手里,谁就离场。重复这个过程,直到只剩一个客人(胜利者) 解题思路:典型的击鼓传花游戏,用队列即可轻松解决 贴下代码 class Queue { constructor() { this.count = 0 this.lowestCount = 0 this.items = {} } enqueue(item) { this.items[this.count] = item this.count++ } isEmpty()...