data structure:javaScript实现的一些数据结构 源码
通用数据结构 帮助您更方便地使用一些常见JavaScript数据结构 目录 正在安装 npm install -- save common - data - structure 例子 const { Stack } = require ( 'common-data-structure' ) const stack = new Stack ( ) // create an instance stack . push ( 5 ) // add an element stack . push ( 6 ) stack . peek ( ) // peek top of stack element stack . push ( 8 ) stack . isEmpty ( ) // Is the stack empty stack . size ( ) // stack length 要求 // im
用户评论