队列是一种特殊的列表,数据结构为FIFO;定义:function Queue() { this.dataStore = []; this.enqueue = enqueue; this.dequeue = dequeue; this.front = front; this.bac...
分类:
Web程序 时间:
2014-10-16 12:18:02
阅读次数:
189
栈是一种特殊的列表,数据结构为LIFO;定义:function Stack() { this.dataStore = []; this.top = 0; this.push = push; this.pop = pop; this.peek = peek; this.len...
分类:
Web程序 时间:
2014-10-15 10:27:10
阅读次数:
215
列表:定义:一组有序的数据;function List() { this.listSize = 0; this.pos = 0; this.dataStore = []; this.find = find; .........................}方法:append:...
分类:
Web程序 时间:
2014-10-13 11:33:19
阅读次数:
244
最近在重温数据结构,于是写了一些代码玩玩,都是很初级的,表喷各位。。。。 1 function Stack(){ 2 this.dataStore = []; 3 this.top = 0; 4 } 5 6 Stack.prototype = { 7 length: function(){ 8 re...
分类:
编程语言 时间:
2014-10-03 13:58:44
阅读次数:
179
Morphia 是一个针对Mongo和Java 对象转换的映射的轻量级ORM类型安全类库。
1.简单易用,轻量级,一旦每一种类型通过反射获取将被缓存,性能比较好。
2.Datastore和DAO的抽象封装。
3.快速的查询的支持,在类运行时进行校...
分类:
其他好文 时间:
2014-09-14 10:08:26
阅读次数:
241
Grid是在客户端上显示大量的表格数据的极佳方式。它本质上是一个超级统计表, GridPanel使其更容易地进行获取、排序和筛选大量的数据。
Grid是由两个主要部分组成的 - 一个含有全部数据的Store和一个要进行渲染列的集合。...
分类:
Web程序 时间:
2014-09-03 19:53:55
阅读次数:
305
import com.google.appengine.api.datastore.DatastoreServiceFactory;import com.google.appengine.api.datastore.DatastoreService;import com.google.appengi...
分类:
其他好文 时间:
2014-08-05 13:51:49
阅读次数:
250
先看效果:代码如下:test其中使用到的"RowExpander.js"为extjs官方示例中自带的。实现这个嵌套表格要注意两点技巧:1 提供给外层表格的dataStore的数据源以嵌套数组的形式表示细节区的数据,如下面的黑体所示。vartestData=[["lugreen","男",26,[["...
分类:
Web程序 时间:
2014-07-22 22:44:14
阅读次数:
391
我们的程序与抽象模型互动,因此不需要管理细节。与关系型数据库大不相同,以至于谷歌称之为datastore,而非database。App数据存储在数个不同位置,依据best-of-breed consensus protocol。datastore最好理解为object database. datas...
分类:
其他好文 时间:
2014-07-11 10:14:53
阅读次数:
198