A Document Type Definition (DTD) defines the legal building blocks of an XML document. It defines the document structure with a list of legal elements...
分类:
其他好文 时间:
2014-09-25 02:34:48
阅读次数:
286
#includeusing namespace std;struct Queue{ int maxCnt; int* elements; int front,rear;};Queue* createQueue(int max=7){ Queue* queue = (Queu...
分类:
其他好文 时间:
2014-09-25 00:53:27
阅读次数:
341
#includeusing namespace std;struct Stack{ int maxCnt; int* elements; int top,bottom;};Stack* createStack(int max=100){ Stack* stack = (St...
分类:
其他好文 时间:
2014-09-24 23:17:17
阅读次数:
263
现状集群已不是什么新技术了,各个数据库厂商也都有了自己的成熟解决方案,目前数据库集群系统应用得比较成功,应用范围比较广泛的是:Oracle公司的Oracle9与IBM公司DB2。Oracle9采用Shared-storage的技术,DB2选择了Shared-nothing的技术,二者各有长短。
最新的数据库集群系统的理论基础是分布式计算,将数据分布到每个节点,所有的计算节点并行处...
分类:
数据库 时间:
2014-09-24 19:36:27
阅读次数:
341
页面布局asp.net MVC中提供了布局的支持,默认情况下才布局文件保存到 /View/Shared/目录下的_Layout.cshtml,View目录有个_ViewStart.cshtml文件,里边的代码@{ Layout = "~/Views/Shared/_Layout.cshtml"...
分类:
Web程序 时间:
2014-09-24 16:23:27
阅读次数:
228
原文地址:http://www.vogella.com/tutorials/AndroidListView/article.html1.Android and Lists1.1.Using lists in AndroidThe display of elements in a list is a ...
分类:
移动开发 时间:
2014-09-24 13:11:36
阅读次数:
262
boost::scoped_ptr虽然简单易用,但它不能共享所有权的特性却大大限制了其使用范围,而boost::shared_ptr可以解决这一局限。顾名思义,boost::shared_ptr是可以共享所有权的智能指针boost::shared_ptr的管理机制其实并不复杂,就是对所管理的对象进行...
分类:
其他好文 时间:
2014-09-24 00:23:55
阅读次数:
250
【转自】http://blog.csdn.net/lhx20/article/details/3039909Table control用于在screen上以表格的形式显示数据,在table control中,可以使用table elements,keywords,,templates,radio b...
分类:
其他好文 时间:
2014-09-23 13:56:04
阅读次数:
281
第一题 #include #define TOTAL_ELEMENTS (sizeof(array) / sizeof(array[0])) int array[] = {23,34,12,17,204,99,16}; int main() { int d; for(d...
分类:
其他好文 时间:
2014-09-23 08:31:14
阅读次数:
290
C#设计模式学习笔记-单例模式 最近在学设计模式,学到创建型模式的时候,碰到单例模式(或叫单件模式),现在整理一下笔记。 在《Design Patterns:Elements of Resuable Object-Oriented Software》中的定义是:Ensurea class onl.....
分类:
其他好文 时间:
2014-09-22 16:43:42
阅读次数:
189