码迷,mamicode.com
首页 >  
搜索关键字:course    ( 2893个结果
转:线性表的查找-顺序查找
转自: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
ZOJ 3811 Untrusted Patrol The 2014 ACM-ICPC Asia Mudanjiang Regional First Round
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
SQL查询语句47题
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
CCNA学习笔记
第一章: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 3818 Untrusted Patrol(dsf+并査集+邻接表)
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
140908●SQL高级查询
等值连接查询 用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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!