- 博客(4)
- 资源 (4)
- 收藏
- 关注
转载 BigPipe: Pipelining web pages for high performance
Site speed is one of the most critical company goals for Facebook. In 2009, we successfully made Facebook site twice as fast, which was blogged in this post. Several key innovations from our enginee
2015-08-03 13:59:42
375
原创 关于VS2010中配置cocos2d-x ,出现OpenGL version too old 问题的解决办法
操作系统:win8.1系统自带了显卡驱动,此驱动支持OpenG
2014-04-11 19:47:24
6180
原创 线性表
▶线性表的顺序存储结构typedef struct { ElementType *element; // 存储空间基地址 int length; // 当前长度 int listsize; // 当前分配的存储容量(ElementType)为单位)}LinearList;C语言部分实现如下:/* * LinearList.c * * Created
2014-03-22 14:58:17
683
原创 栈和队列
▶栈的顺序存储结构typedef struct { ElementType *base; // 在栈构造之前和销毁之后,base的值为null ElementType *top; // 栈顶指针 int stacksize; // 当前分配的存储容量(ElementType)为单位)}Stack;C语言部分代码实现如下:#include #incl
2014-03-22 12:49:41
756
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人