文件名称:data-structure:javaScript实现的一些数据结构
文件大小:127KB
文件格式:ZIP
更新时间:2024-03-29 12:43:26
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
【文件预览】:
data-structure-master
----rollup.config.js(1KB)
----package.json(2KB)
----.eslintrc.json(8KB)
----test()
--------LinkedList.test.js(2KB)
--------Queue.test.js(1KB)
--------.eslintrc.json(110B)
--------HashMap.test.js(2KB)
--------Set.test.js(1KB)
--------DoublyLinkedList.test.js(2KB)
--------Deque.test.js(2KB)
--------Stack.test.js(1KB)
----.babelrc.json(199B)
----LICENSE(1KB)
----package-lock.json(393KB)
----src()
--------Deque.js(2KB)
--------models()
--------Stack.js(1KB)
--------index.js(318B)
--------Queue.js(2KB)
--------Set.js(1KB)
--------DoublyLinkedList.js(3KB)
--------HashMap.js(5KB)
--------LinkedList.js(3KB)
----.npmignore(49B)
----.gitignore(14B)
----lib()
--------index.js(90KB)
----README.md(6KB)
----util()
--------index.js(586B)
----.eslintignore(17B)
----.editorconfig(654B)