本文转载自:http://www.cnblogs.com/yangecnu/p/Introduce-B-Tree-and-B-Plus-Tree.html维基百科对B树的定义为“在计算机科学中,B树(B-tree)是一种树状数据结构,它能够存储数据、对其进行排序并允许以O(log n)的时间复杂度运...
分类:
其他好文 时间:
2015-05-24 23:21:28
阅读次数:
234
p319.3 1 #include 2 #include 3 #include 4 #include 5 void deliver(char *a1, char *a2, int n); 6 7 int main(void) 8 { 9 int n;10 char str1[81]...
分类:
其他好文 时间:
2015-05-24 23:18:24
阅读次数:
188
p421.5 1 #include 2 #include 3 #define CSIZE 4 4 #define SCORE 3 5 6 void get_info(struct students *p); 7 void get_average(struct students *p); 8 voi....
分类:
其他好文 时间:
2015-05-24 23:12:43
阅读次数:
123
1. 创建数据库文件和帐号 [root@ebs12vis oracle]# su - oracle[oracle@ebs12vis ~]$ sqlplus / as sysdba SQL*Plus: Release 11.1.0.7.0 - Production on Sun May 24 10:1...
分类:
移动开发 时间:
2015-05-24 18:44:41
阅读次数:
598
[root@ebs12vis oracle]# su - oracle[oracle@ebs12vis ~]$ sqlplus / as sysdba SQL*Plus: Release 11.1.0.7.0 - Production on Sun May 24 10:13:48 2015 Copy...
分类:
其他好文 时间:
2015-05-24 11:21:09
阅读次数:
138
首先,我们通过sql/plus先建个TEST表sql语句:CTEATE TABLE TEST(ID NUMBER,NAME VARCHAR2(20),PRIMARY KEY(ID));通过sql/plus建立个序列sql语句:CREATE SEQUENCE SEQ_TESTINCREMENT BY ...
分类:
数据库 时间:
2015-05-23 22:33:22
阅读次数:
207
一、入门视频:零起点学通C++(范磊)电子书:C++ Primer第三版、第四版http://pan.baidu.com/share/link?shareid=432594&uk=1211444507&third=15二、VC++学习视频:1、VC++深入详解(修订版)http://pan.baid...
分类:
编程语言 时间:
2015-05-23 19:57:24
阅读次数:
200
参考自《C++ Primer Plus 6th Edition》和 《C++ Primer 5th Edition》(本博文中知识点较为零散和基础,主要用于本人的学习回顾)访问所创建对象的公有成员1. 自动存储类对象: "句点方法"2. 动态存储类对象(使用new): 我们创建了一个匿名的对象,并把...
分类:
编程语言 时间:
2015-05-23 01:16:03
阅读次数:
177
Problem DescriptionNow I think you have got an AC in Ignatius.L's "Max Sum" problem. To be a brave ACMer, we always challenge ourselves to more diffic...
分类:
其他好文 时间:
2015-05-22 20:56:22
阅读次数:
123
一、SQL PLUS 1 引言 SQL命令 以下17个是作为语句开头的关键字: alter drop revoke audit grant rollback* commit* insert select comment lock update create noaudit val...
分类:
数据库 时间:
2015-05-22 16:51:55
阅读次数:
135