- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/msubra/jaadi.js
软件介绍
Jaadi 是一个简单易用的浏览器存储技术的抽象 API,支持 DOM、W3C 和浏览器专有的存储技术。Jaadi 提供基本的 CRUD 操作的封装。
示例代码:
var dom = Jaadi.createInstance("dom")
dom.put("a",10); //put a literal
dom.put("person", {name:"Name","age":10}); //put a JSON
var val = dom.get("a");
var person = dom.get("person"); //get back a JSON object
Algorithms and Data Structures
Kurt Mehlhorn、Peter Sanders / Springer / 2008-08-06 / USD 49.95
Algorithms are at the heart of every nontrivial computer application, and algorithmics is a modern and active area of computer science. Every computer scientist and every professional programmer shoul......一起来看看 《Algorithms and Data Structures》 这本书的介绍吧!
