转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.1.htm顺序查找(Sequential Search) 在表的组织方式中,线性表是最简单的一种。顺序查找是...
分类:
其他好文 时间:
2014-09-10 19:30:10
阅读次数:
269
转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.2.1.htm二分查找1、二分查找(Binary Search) 二分查找又称折半查找,它是一种效率较高的查找方法...
分类:
其他好文 时间:
2014-09-10 19:25:40
阅读次数:
305
转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.1.1.htm本章简介 由于查找运算的使用频率很高,几乎在任何一个计算机系统软件和应用软件中都会涉及到,所以当问题所涉及的数据量相当大时,查找方法的效....
分类:
其他好文 时间:
2014-09-10 19:25:30
阅读次数:
201
转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.3.htm分块查找 分块查找(Blocking Search)又称索引顺序查找。它是一种性能介于顺序查找和二分查找之间的查找方法。 1、 二分查找....
分类:
其他好文 时间:
2014-09-10 19:24:30
阅读次数:
273
DescriptionEdward is a rich man. He owns a large factory for health drink production. As a matter of course, there is a large warehouse in the factory...
分类:
其他好文 时间:
2014-09-10 00:24:39
阅读次数:
372
1 select * from student 2 select * from score 3 --select * from grade 4 select * from course 5 select * from teacher 6 7 --1、 查询Student表中的所有记...
分类:
数据库 时间:
2014-09-09 23:01:49
阅读次数:
417
第一章:Internetworking CCNA中文读书笔记 Cisco Certified Network Associate 640-801 ICND Course Notes Chapter 1 Internetworking Internetworking Basic 把1个大的网络分成几个...
分类:
其他好文 时间:
2014-09-09 19:58:09
阅读次数:
226
ZOJ Problem Set - 3811
Untrusted Patrol
Time Limit: 3 Seconds
Memory Limit: 65536 KB
Edward is a rich man. He owns a large factory for health drink production. As a matter of course, ...
分类:
其他好文 时间:
2014-09-09 13:27:39
阅读次数:
232
$ 匹配行结束符。例如正则表达式weasel$ 能够匹配字符串"He's a weasel"的末尾,但是不能匹配字符串"They are a bunch of weasels."。 ^ 匹配一行的开始。例如正则表达式^When in能够匹配字符串"When in the course of h...
分类:
其他好文 时间:
2014-09-09 12:18:48
阅读次数:
333
等值连接查询 用where子句指定连接条件 例:查询“张旭“教师任课的学生成绩 select score.* from score,course,teacher where score.cno=course.cno and course.tno=teacher.tno and tname...
分类:
数据库 时间:
2014-09-09 11:43:08
阅读次数:
211