在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:Bishop92/JavaScript-Data-Structures开源软件地址:https://github.com/Bishop92/JavaScript-Data-Structures开源编程语言:JavaScript 99.2%开源软件介绍:Data StructuresA library for data structures in JavaScript DataStructures is a JavaScript library where you can find the most common data structures and also other data structures more advanced. Various method are also provided in order to manipulate data structures. This library implements the [iterator] (http://en.wikipedia.org/wiki/Iterator_pattern) pattern in order to hide the data structure that work for storing your data. Supported data structures
How to use
Example var listA = new DoubleLinkedList();
var listB = new DoubleLinkedList();
listA.fromArray([0, 1]);
listB.fromArray([2, 3]);
listA.join(listB);
listA.toArray(); // [0, 1, 2, 3] DocumentationFollow this link to read the full documentation. Follow this link to read the JSDoc. SupportBattistella Stefano, [email protected] |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论