Skip to content

Commit f2c9036

Browse files
committed
updated readme
1 parent 6a65e71 commit f2c9036

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

readme.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,6 @@ This is a repository dedicated to data structures and data theory for JavaScript
44

55
If you are looking for the original repository for this, you can find it in the [original](/shadowcodex/data-theory/tree/original) branch.
66

7-
## Why did you wipe out the old repo?
8-
9-
I moved the old repo to the `original` branch, because it can be slightly misleading. It was a project I started 2 years ago when I feel I wasn't as knowledgeable about JavaScript as I am now. I also have spent more time studying data theory and applications along with real world use cases with JavaScript in CryptoCurrency. So looking back I would have done things differently, but I wanted to keep the historical state of it preserved for comparisons.
10-
11-
So I am starting fresh and am going to work to tackle different types of data structures. I'd like to also do instructional videos on these after writing them to go over their use cases, how they work, and different ways to do them if there are multiple ways.
12-
13-
> For example there are a few ways to do stacks and queues in JavaScript, but one way (array based) requires linear time to make changes and another way (linked list based) takes constant time. What is the difference? Well that's something I hope to cover in videos after I get librarys and code.
14-
15-
I want to walk the walk before I talk the talk. Using this repository.
16-
177
## Benchmarks
188

199
If you would like to see some benchmarks on these data structures then [click here...](/benchmark/README.md);
@@ -52,3 +42,7 @@ let queue = new queues.LinkedQueue();
5242
queue.enqueue('item');
5343
queue.dequeue();
5444
```
45+
46+
## What is the `original` branch?
47+
48+
I moved the old repo to the `original` branch, this old repo was a different appraoch on how to do the data theory applications. I am redoing the entire repo and showing the new types and systems and making it importable.

0 commit comments

Comments
 (0)