秀丽裙子

文章
5
资源
0
加入时间
2年10月17天

前端力扣刷题_数据结构篇(队列&栈)

用两个栈实现队列var CQueue = function() { this.stack1=[];//stack1相当于茶壶 this.stack2=[];//stack2相当于茶杯};/** * @param {number} value * @return {void} */CQueue.prototype.appendTail = function(value) { this.stack1.push(value);};/** * @return {n