Skip to content

Commit f25c750

Browse files
committed
Update: README information
1 parent 1196928 commit f25c750

File tree

1 file changed

+34
-17
lines changed

1 file changed

+34
-17
lines changed

README.md

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,47 @@
1-
Collection of classic computer science paradigms, algorithms, and approaches written in JavaScript. All of the code is available under an MIT License.
1+
# Computer Science in JavaScript
22

3-
Each example has an associated blog post:
3+
by [Nicholas C. Zakas](https://humanwhocodes.com) (Find this useful? Consider [donating](https://humanwhocodes.com/donate) to support my work.)
44

5-
Base64 Encoding
6-
http://www.nczonline.net/blog/2009/12/08/computer-science-in-javascript-base64-encoding/
5+
## Description
76

8-
Binary Search
9-
http://www.nczonline.net/blog/2009/09/01/computer-science-in-javascript-binary-search/
7+
Collection of classic computer science paradigms, algorithms, and approaches written in JavaScript. This is the source code for the series of blog posts on my website.
8+
9+
### Data Structures
1010

1111
Binary Search Tree
12-
http://www.nczonline.net/blog/2009/06/09/computer-science-in-javascript-binary-search-tree-part-1/
13-
http://www.nczonline.net/blog/2009/06/16/computer-science-in-javascript-binary-search-tree-part-2/
12+
https://humanwhocodes.com/blog/2009/06/09/computer-science-in-javascript-binary-search-tree-part-1/
13+
https://humanwhocodes.com/blog/2009/06/16/computer-science-in-javascript-binary-search-tree-part-2/
14+
15+
Doubly Linked List
16+
https://humanwhocodes.com/blog/2009/04/21/computer-science-in-javascript-doubly-linked-lists/
17+
18+
Linked List
19+
https://humanwhocodes.com/blog/2009/04/13/computer-science-in-javascript-linked-list/
20+
21+
### Sorting Algorithms
1422

1523
Bubble Sort
16-
http://www.nczonline.net/blog/2009/05/26/computer-science-in-javascript-bubble-sort/
24+
https://humanwhocodes.com/blog/2009/05/26/computer-science-in-javascript-bubble-sort/
25+
26+
Selection Sort
27+
https://humanwhocodes.com/blog/2009/09/08/computer-science-in-javascript-selection-sort/
28+
29+
### Other Algorithms
30+
31+
Base64 Encoding
32+
https://humanwhocodes.com/blog/2009/12/08/computer-science-in-javascript-base64-encoding/
33+
34+
Binary Search
35+
https://humanwhocodes.com/blog/2009/09/01/computer-science-in-javascript-binary-search/
1736

1837
Credit Card Number Validation
19-
http://www.nczonline.net/blog/2009/08/04/computer-science-in-javascript-credit-card-number-validation/
38+
https://humanwhocodes.com/blog/2009/08/04/computer-science-in-javascript-credit-card-number-validation/
2039

21-
Doubly Linked List
22-
http://www.nczonline.net/blog/2009/04/21/computer-science-in-javascript-doubly-linked-lists/
2340

24-
Linked List
25-
http://www.nczonline.net/blog/2009/04/13/computer-science-in-javascript-linked-list/
41+
## Issues and Pull Requests
2642

27-
Selection Sort
28-
http://www.nczonline.net/blog/2009/09/08/computer-science-in-javascript-selection-sort/
43+
Because this repository is based on a series of blog posts I wrote, I only accept issues and pull requests related to bugs.
44+
45+
## License
2946

30-
Please note: Since this is the repository that goes along with my blog post series, only pull requests for bugs are accepted.
47+
MIT

0 commit comments

Comments
 (0)