- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/pcbje/ggraph
- 软件文档: https://github.com/pcbje/ggraph
软件介绍
Ggraph 是一个基于 D3 构建的复杂混合图形的库,它扩展了节点和链接的概念。非常适合一组或者多组节点连接的展示。
示例代码:
初始化:
ggraph.init('container');
ggraph.draw(converted);合并节点到组中:
// Merge selected ggraph.merge(selection.all()); // Into single group ggraph.merge(['Maria West', 'Sheldon Roy']); // Into several groups ggraph.merge([ ['A', 'B'], ['C', 'D'] ]);
切分和删除:
ggraph.split(['Maria West', 'Sheldon Roy']); ggraph.remove(['Maria West', 'Hazel Santiago']);
在线演示:https://gransk.com/ggraph.html
构建:
git clone https://github.com/pcbje/ggraph && cd ggraph npm install node_modules/.bin/karma tests/cover.conf.js node_modules/.bin/karma tests/watch.conf.js node_modules/.bin/grunt min
垃圾回收的算法与实现
中村成洋、相川光 / 丁灵 / 人民邮电出版社 / 2016-7-1 / 99.00元
★ Ruby之父Matz作推荐语:上古传承的魔法,彻底揭开垃圾回收的秘密! ★ 日本天才程序员兼Lisp黑客竹内郁雄审校 本书前半介绍基本GC算法,包括标记-清除GC、引用计数、复制算法的GC、串行GC的算法、并发GC的算法等。后半介绍V8、Rubinius、Dalvik、CPython等几种具体GC的实现。本书适合各领域程序员阅读。一起来看看 《垃圾回收的算法与实现》 这本书的介绍吧!

