mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-23 12:54:04 +00:00
README.md refined
This commit is contained in:
parent
dec3146ec3
commit
92d6b38d58
|
@ -1,5 +1,7 @@
|
|||
# data-structure-typed
|
||||
|
||||
Javascript Data Structure, TypeScript Data Structure Library
|
||||
|
||||
## install
|
||||
|
||||
### yarn
|
||||
|
@ -16,6 +18,8 @@ npm install data-structure-typed
|
|||
|
||||
## data structures
|
||||
|
||||
Meticulously crafted to empower developers with a versatile set of essential data structures. Our library includes a wide range of data structures:
|
||||
Binary Tree, Binary Search Tree (BST), AVL Tree, Tree Multiset, Segment Tree, Binary Indexed Tree, Graph, Directed Graph, Undirected Graph, Linked List, Singly Linked List, Doubly Linked List, Queue, Object Deque, Array Deque, Stack, Hash, Coordinate Set, Coordinate Map, Heap, Priority Queue, Max Priority Queue, Min Priority Queue, Trie
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
21
package.json
21
package.json
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "data-structure-typed",
|
||||
"version": "0.9.16",
|
||||
"description": "Explore our comprehensive TypeScript Data Structure Library, meticulously crafted to empower developers with a versatile set of essential data structures. Our library includes a wide range of data structures, such as Binary Tree, AVL Tree, Binary Search Tree (BST), Tree Multiset, Segment Tree, Binary Indexed Tree, Graph, Directed Graph, Undirected Graph, Singly Linked List, Hash, CoordinateSet, CoordinateMap, Heap, Doubly Linked List, Priority Queue, Max Priority Queue, Min Priority Queue, Queue, ObjectDeque, ArrayDeque, Stack, and Trie. Each data structure is thoughtfully designed and implemented using TypeScript to provide efficient, reliable, and easy-to-use solutions for your programming needs. Whether you're optimizing algorithms, managing data, or enhancing performance, our TypeScript Data Structure Library is your go-to resource. Elevate your coding experience with these fundamental building blocks for software development.",
|
||||
"description": "Explore our comprehensive Javascript Data Structure / TypeScript Data Structure Library, meticulously crafted to empower developers with a versatile set of essential data structures. Our library includes a wide range of data structures, such as Binary Tree, AVL Tree, Binary Search Tree (BST), Tree Multiset, Segment Tree, Binary Indexed Tree, Graph, Directed Graph, Undirected Graph, Singly Linked List, Hash, CoordinateSet, CoordinateMap, Heap, Doubly Linked List, Priority Queue, Max Priority Queue, Min Priority Queue, Queue, ObjectDeque, ArrayDeque, Stack, and Trie. Each data structure is thoughtfully designed and implemented using TypeScript to provide efficient, reliable, and easy-to-use solutions for your programming needs. Whether you're optimizing algorithms, managing data, or enhancing performance, our TypeScript Data Structure Library is your go-to resource. Elevate your coding experience with these fundamental building blocks for software development.",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "rm -rf dist && npx tsc",
|
||||
|
@ -15,27 +15,28 @@
|
|||
},
|
||||
"keywords": [
|
||||
"Binary Tree",
|
||||
"AVL Tree",
|
||||
"Binary Search Tree (BST)",
|
||||
"AVL Tree",
|
||||
"Tree Multiset",
|
||||
"Segment Tree",
|
||||
"Binary Indexed Tree",
|
||||
"Graph",
|
||||
"Directed Graph",
|
||||
"Undirected Graph",
|
||||
"Linked List",
|
||||
"Singly Linked List",
|
||||
"Hash",
|
||||
"CoordinateSet",
|
||||
"CoordinateMap",
|
||||
"Heap",
|
||||
"Doubly Linked List",
|
||||
"Queue",
|
||||
"Object Deque",
|
||||
"Array Deque",
|
||||
"Stack",
|
||||
"Hash",
|
||||
"Coordinate Set",
|
||||
"Coordinate Map",
|
||||
"Heap",
|
||||
"Priority Queue",
|
||||
"Max Priority Queue",
|
||||
"Min Priority Queue",
|
||||
"Queue",
|
||||
"ObjectDeque",
|
||||
"ArrayDeque",
|
||||
"Stack",
|
||||
"Trie"
|
||||
],
|
||||
"author": "Tyler Zeng",
|
||||
|
|
Loading…
Reference in a new issue