摘要: Queue.isEmpty = function() { return (this.front == this.rear); } Queue.isFull = function() { return ((this.rear + 1) % this.MaxSize == this.front); } 阅读全文
posted @ 2020-06-23 17:28 guogrant 阅读(598) 评论(0) 推荐(0) 编辑