makeJs

所以我制作了一个子 Javascript 解释器来解释自己。 (不依赖任何第三方)

特性

  • 定义变量

  • 简单的表达

  • 比较

  • if 语句

  • while 循环

  • Function

  • Array

函数:

  [js]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
function quickSort(list,len) { let a = 0; let b = len-1; let c = list[a]; while (a < b){ while (list[b]>c && a < b){ b = b-1; } if(list[b] < c){ list[a] = list[b]; list[b] = c; b = b-1; c = list[b]; } while (list[a] < c && a < b){ a = a + 1; } if(list[a] > c){ list[b] = list[a]; list[a] = c; a = a + 1; c = list[a]; } } return list; } let arr = [9,3,2,1,5,-2,6]; quickSort(arr,7);

参考资料

https://github.com/addthis/stream-lib