- 博客(7)
- 收藏
- 关注
转载 国产编程语言
lucy编程语言发布第一个版本 经过长达一年的开发,基于jvm开发的编程语言正式发布第一个版本了。 欢迎大家一起学习交流, 语言包下载地址 链接:https://pan.baidu.com/s/1Ris1htrIMbsduqyaVgJ2og 提取码:ucze ...
2019-03-02 09:49:00 233
转载 寻找一起开发编程语言的同志
联系方式qq 756445638 转载于:https://my.oschina.net/u/3025685/blog/1551170
2017-10-16 10:29:00 87
转载 一言不合就写了个js解释器
最近无聊又在学习编译原理,就写了个js解释器练练手。 欢迎大家学习研究 项目地址在https://github.com/756445638/jsInterpreter。 码云地址在https://gitee.com/yuyang-fine/jsInterpreter 现在支持创建数组和...
2017-08-31 10:49:00 118
转载 trie字典树简单实现
#include <stdio.h> #include <malloc.h> #define MAX 26 typedef struct __trie{ struct __trie* nodes[MAX]; char c; char count...
2016-12-30 10:29:00 95
转载 从n中选出m个元素
/* 从n中选出m个数 */ #include <stdio.h> int m = 0; int n = 0; char* malloc_and_copy_path(int,char*,int); void memset(char* arr,int length,char v...
2016-12-30 10:27:00 183
转载 哈希树简单实现
#include <stdio.h> #include <malloc.h> typedef struct __hash_tree { int level; int value; int* primes; // "2 3 5 0" 0 is a...
2016-12-23 13:58:00 176
转载 mysql主从备份配置
原文来至于https://scriptingmysql.wordpress.com/2013/01/18/mysql-replication-with-global-transaction-identifiers-step-by-step-install-and-addition-of-sl...
2016-12-23 13:40:00 192
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人