1. 首页
  2. 数据库
  3. 其它
  4. data structure:javaScript实现的一些数据结构 源码

data structure:javaScript实现的一些数据结构 源码

上传者: 2021-04-17 19:13:40上传 ZIP文件 127.04KB 热度 6次
通用数据结构 帮助您更方便地使用一些常见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
用户评论