常见数据结构
栈1234567891011121314151617181920class Stack { constructor() { this.stack = [] } push(item) { this.stack.push(item) }
...
前端开发小迷妹~