上一页 1 ··· 310 311 312 313 314 315 316 317 318 ··· 320 下一页
摘要: 练习一 1 简述什么是网络数据库。 2 SQL Server 2000 的常见版本有哪些。 3 解释以下若干名词术语:关系,元组,属性,主键。 4 简述SQL Server 2000中的4个系统数据库的主要用途。 5 简述SQL Server 2000中的一些常用数据类型(datetime,int,float,money)的用法或用途。 6 简述查询分析... 阅读全文
posted @ 2007-10-18 18:44 emanlee 阅读(906) 评论(1) 推荐(0) 编辑
摘要: /* Title: 冒泡排序 Author: eman lee 算法功能:冒泡排序算法实现将一个长度为n的线性表r上的所有元素按关键字升序排列。 */ #include void bubblesort(int r[],int n) { /*elements are stored in r[1] to r[n]*/ int i,j,flag; int temp; flag=1; ... 阅读全文
posted @ 2007-10-16 23:18 emanlee 阅读(420) 评论(0) 推荐(0) 编辑
摘要: /* Title: 直接插入排序 Author: eman lee 算法功能:实现将一个长度为n的线性表r上的所有元素按关键字升序排列。 */ #include void insertsort (int r[] , int n) { /*r[0] is preserved, elements are stored in r[1] to r[n]*/ int i,j; for (... 阅读全文
posted @ 2007-10-16 23:17 emanlee 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 实验三 参考源程序 //软件基础 教材 79 页 习题6 答案 //Eman Lee #include #include #define m 5 //队列容量 //定义队列的结构 struct queue { int seq[m];//队列元素 int quelen;//队列中元素个数 int rear;//队列尾指针 }; //初始化队列 struct queue ... 阅读全文
posted @ 2007-10-16 23:04 emanlee 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 实验二 参考源程序 /* Author : Eman Lee, 计算机软件基础 教材 P79, ex4 设有一头为head的带头结点的单链表,其数据域为整形数据且递增有序。 试写一算法,将元素插入链表适当的位置,以保持链表的有序性。 */ #include #include typedef int DataType; struct nodetype//Define node 定义节点 { ... 阅读全文
posted @ 2007-10-16 23:03 emanlee 阅读(370) 评论(0) 推荐(0) 编辑
摘要: ------------------------------------------------------------------ 实验一 参考源程序 // 线性表的顺序存储(顺序表) // Author: Eman Lee #include void SearchMultipleLocation(char List[],int *ListLength,char key) { int i... 阅读全文
posted @ 2007-10-16 23:02 emanlee 阅读(438) 评论(0) 推荐(0) 编辑
摘要: P111,第3题 参考答案 先序遍历: A B D G H C E I F J 中序遍历: G D H B A E I C F J 后序遍历: G H D B I E J F C A 顺序存储结构: 位置 1 ... 阅读全文
posted @ 2007-10-16 22:59 emanlee 阅读(425) 评论(0) 推荐(0) 编辑
摘要: http://aspnet.4guysfromrolla.com/articles/021506-1.aspx By Scott Mitchell Introduction When creating ASP.NET 2.0 applications, developers commonly store sensitive configuration information in the We... 阅读全文
posted @ 2007-10-16 12:23 emanlee 阅读(597) 评论(0) 推荐(0) 编辑
摘要: /*--------------------------------------------- Title: 二叉排序树中查找 Author: eman lee ----------------------------------------------*/ #include #include //定义二叉树的节点结构 struct node { int data;//... 阅读全文
posted @ 2007-10-14 20:20 emanlee 阅读(565) 评论(0) 推荐(0) 编辑
摘要: //分块查找,索引顺序查找 #include //定义顺序存储线性表的结点结构 struct student { long Xuehao;//关键字 int Jihao; //非关键字 }; struct indexNode { int address; int maxKey; }; int SearchPosition(struct indexNod... 阅读全文
posted @ 2007-10-14 20:15 emanlee 阅读(634) 评论(0) 推荐(0) 编辑
上一页 1 ··· 310 311 312 313 314 315 316 317 318 ··· 320 下一页