Skip to content

Commit 7013ef8

Browse files
committed
breaking changes
1 parent b6d0845 commit 7013ef8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-theory",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "A collection of data theory and structures in JavaScript.",
55
"main": "index.js",
66
"repository": "https://github.com/shadowcodex/data-theory.git",

readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ As theories and structures are built, I'll list them under this heading.
2020

2121
> You won't see a todo list or a target list this time around. I'll take suggestions as issues on the repository, but I'm going to focus on building commong structures and items one at a time. One thing I have learned as a developer is never get ahead of yourself, you can get paralyzed with planning and expectations.
2222
23-
- `Stack`: based on a linked list (slow)
24-
- `ArrayStack`: based on JS array (fast)
23+
- `LinkedStack`: based on a linked list (slow)
24+
- `UArrayStack`: based on JS unbounded array (fast)
25+
- `BArrayStack`: based on JS bounded array (fastest)
2526
- `Queue`: based on a linked list (fast)
2627
- `ArrayQueue`: based on JS array (slow)
2728

0 commit comments

Comments
 (0)