|
1 |
| -# Codes |
| 1 | +# awesome-coding-javascript |
2 | 2 |
|
3 |
| -📌 some codes, verify code logic with unit tests. |
| 3 | +📌 coding about JavaScript basic principles and data structures and algorithms, verify logic with unit test. |
4 | 4 |
|
5 |
| -[](https://codecov.io/gh/caiyongmin/codes) |
| 5 | +[](https://codecov.io/gh/caiyongmin/codes) [](README.md) |
6 | 6 |
|
7 | 7 | ## JavaScript
|
8 | 8 |
|
9 |
| -- [x] [bind](./src/javascript/bind/bind.test.js) |
10 |
| -- [x] [call](./src/javascript/call/call.js) |
11 |
| -- [x] [apply](./src/javascript/apply/apply.js) |
12 |
| -- [x] [new](./src/javascript/new/new.test.js) |
13 |
| -- [x] [deepclone](./src/javascript/deepclone/deepclone.js) |
14 |
| -- [x] [throttle](./src/javascript/throttle/throttle.js) |
15 |
| -- [x] [debounce](./src/javascript/debounce/debounce.js) |
16 |
| -- [x] [event-emitter](./src/javascript/event-emitter/event-emitter.js) |
17 |
| -- [x] [Promise](./src/javascript/promise/promise.html) |
| 9 | +- [x] [bind](./src/javascript/bind) |
| 10 | +- [x] [call](./src/javascript/call) |
| 11 | +- [x] [apply](./src/javascript/apply) |
| 12 | +- [x] [new](./src/javascript/new) |
| 13 | +- [x] [deepclone](./src/javascript/deepclone) |
| 14 | +- [x] [throttle](./src/javascript/throttle) |
| 15 | +- [x] [debounce](./src/javascript/debounce) |
| 16 | +- [x] [EventEmitter](./src/javascript/event-emitter) |
| 17 | +- [x] [Promise](./src/javascript/promise) |
18 | 18 |
|
19 | 19 | ## Framework & Library & Plugin
|
20 | 20 |
|
21 |
| -- [x] [Babel](./src/bundler/babel/babel.js) |
| 21 | +- [x] [Babel](./src/bundler/babel) |
22 | 22 | - input => [tokenizer](./src/bundler/babel/lib/tokenizer.js) => tokens
|
23 |
| - - tokens => [parser](./src/bundler/babel/lib/parser.js) => ast |
24 |
| - - ast => [transformer](./src/bundler/babel/lib/transformer.js) => newAst |
25 |
| - - newAst => [codeGenerator](./src/bundler/babel/lib/codeGenerator.js) => output |
26 |
| -- [x] [Webpack](./src/bundler/webpack/minipack.js) |
27 |
| -- [x] [Webpack-Plugin](./src/bundler/webpack-plugin/OpenBrowserPlugin.js) |
28 |
| -- [x] [Babel-Plugin](./src/bundler/babel-plugin/babel-plugin-simple-import.js) |
29 |
| -- [x] [Redux](./src/bundler/redux/redux.js) |
30 |
| -- [x] [Router](./src/bundler/router/hashRouter.js) |
| 23 | + - tokens => [parser](./src/bundler/babel/lib/parser.js) => AST |
| 24 | + - AST => [transformer](./src/bundler/babel/lib/transformer.js) => newAST |
| 25 | + - newAST => [codeGenerator](./src/bundler/babel/lib/codeGenerator.js) => output |
| 26 | +- [x] [Webpack](./src/bundler/webpack) |
| 27 | +- [x] [Webpack-Plugin](./src/bundler/webpack-plugin) |
| 28 | +- [x] [Babel-Plugin](./src/bundler/babel-plugin) |
| 29 | +- [x] [Redux](./src/bundler/redux) |
| 30 | +- [x] [Router](./src/bundler/router) |
31 | 31 | - [hashRouter](./src/bundler/router/hashRouter.js)
|
32 | 32 | - [historyRouter](./src/bundler/router/historyRouter.js)
|
33 | 33 |
|
34 | 34 | ## DSA
|
35 | 35 |
|
36 |
| -- array |
37 |
| - - [] two sum |
38 |
| - - [] three sum |
39 |
| - - [] [remove duplicate](./src/dsa/array/unique.js) |
40 |
| -- sort |
41 |
| - - [] [bubble sort](./src/dsa/sort/bubbleSort.js) |
42 |
| - - [] [selection sort](./src/dsa/sort/selectionSort.js) |
43 |
| - - [] [insert sort](./src/dsa/sort/insertSort.js) |
44 |
| - - [] [merge sort](./src/dsa/sort/mergeSort.js) |
45 |
| - - [] [quick sort](./src/dsa/sort/quickSort.js) |
46 |
| -- dynamic programming |
47 |
| - - [] min distance |
48 |
| - - [] min path sum |
49 |
| -- tree |
50 |
| - - [] binary tree |
51 |
| - - [] binary search tree |
52 |
| - - [] tree symmetry |
53 |
| - - [] tree traversal |
54 |
| - - [] tree balanced |
55 |
| -- number |
56 |
| - - [] thousands format |
57 |
| -- string |
58 |
| - - [] longest common subsquence |
59 |
| - - [] KMP |
| 36 | +- [Array](./src/dsa/array) |
| 37 | + - [x] [two sum](./src/dsa/array/twoSum.js) |
| 38 | + - [x] [three sum](./src/dsa/array/threeSum.js) |
| 39 | + - [x] [remove duplicate](./src/dsa/array/unique.js) |
| 40 | +- [Sort](./src/dsa/sort) |
| 41 | + - [x] [bubble sort](./src/dsa/sort/bubbleSort.js) |
| 42 | + - [x] [selection sort](./src/dsa/sort/selectionSort.js) |
| 43 | + - [x] [insert sort](./src/dsa/sort/insertSort.js) |
| 44 | + - [x] [merge sort](./src/dsa/sort/mergeSort.js) |
| 45 | + - [x] [quick sort](./src/dsa/sort/quickSort.js) |
| 46 | +- [Tree](./src/dsa/tree) |
| 47 | + - [x] [binary tree](./src/dsa/tree/binaryTree.js) |
| 48 | + - [x] [binary search tree](./src/dsa/tree/binarySearchTree.js) |
| 49 | + - [x] [tree symmetry](./src/dsa/tree/treeSymmetry.js) |
| 50 | + - [x] [tree traversal](./src/dsa/tree/treeTraversal.js) |
| 51 | +- [Dynamic Programming](./src/dsa/dynamicProgramming) |
| 52 | + - [x] [min edit distance](./src/dsa/dynamicProgramming/minEditDistance.js) |
| 53 | +- [Number](./src/dsa/number) |
| 54 | + - [x] [thousands format](./src/dsa/number/thousands.js) |
| 55 | +- [String](./src/dsa/string) |
| 56 | + - [x] [longest common subsquence](./src/dsa/string/longestCommonSub.js) |
| 57 | + - [x] [KMP](./src/dsa/string/kmp.js) |
0 commit comments