js-队列使用-循环队列实现击鼓传花

队列是遵循FIFO(先进先出)原则。

循环队列是修改版的队列实现。

击鼓传花游戏的代码如下:

function Queue() {//队列类
	var items = [];
	this.enqueue = function (element) {
		items.push(element);
	}
	this.dequeue = function () {
		items.shift();
	}
	this.front = function () {
		return items[0];
	}
	this.isEmpty = function () {
		return items.length == 0;
	}
	this.clear = function () {
		items = [];
	}
	this.size = function () {
		return items.length;
	}
	this.print = function () {
		console.log(items.toString());
	}
}
function hotPotato(nameList, num) {//nameList为姓名数组,num为一个数字用来迭代队列
	var queue = new Queue();
	for (var i = 0; i < nameList.length; i++) {
		queue.enqueue(nameList[i]);//数组入队


	}
	var eliminated = '';
	while (queue.size() > 1) {
		for (var i = 0; i < num; i++) {
			queue.enqueue(queue.dequeue());//数组出队然后入队
		}
		eliminated = queue.dequeue();
		console.log(eliminated + '在击鼓传花游戏中被淘汰。');
	}
	return queue.dequeue();
}
var names=['John','Jack','Camila','Ingrid','Carl'];
var winner=hotPotato(names,7);
console.log('胜利者是:'+winner);




评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值