- 授权协议: 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
编程原本
Alexander Stepanov、Paul McJones / 裘宗燕 / 机械工业出版社华章公司 / 2012-1-10 / 59.00元
本书提供了有关编程的一种与众不同的理解。其主旨是,实际的编程也应像其他科学和工程领域一样基于坚实的数学基础。本书展示了在实际编程语言(如C++)中实现的算法如何在最一般的数学背景中操作。例如,如何定义快速求幂算法,使之能使用任何可交换运算。使用抽象算法将能得到更高效、可靠、安全和经济的软件。 这不是一本很容易读的书,它也不是能提升你的编程技能的秘诀和技巧汇编。本书的价值是更根本性的,其终极目......一起来看看 《编程原本》 这本书的介绍吧!

