-
jsp网上选课系统
本系统是简易的网上选课系统,包括学生的选课查成绩、教师打分以及管理员的一些后台操作。本系统是基于jsp环境下进行设计的,学习运用JSP 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-18 14:07:33下载
- 积分:1
-
Mainly include: the establishment of the University of the database source file,...
主要包括:建立大学数据库的源文件,已经建立好的ACCESS数据库文件,ACCESS2007教程课件,窗体使用的经验交流课件,实验报告。希望能对学习数据库的同学产生帮助-Mainly include: the establishment of the University of the database source file, well-established ACCESS database file, ACCESS2007 tutorial courseware, the form used in the exchange of experience courseware, lab report. Hopes of learning a database created to help students
- 2022-05-15 01:26:30下载
- 积分:1
-
c++链式队列的实现
c++链式队列的实现头文件如下:
typedef int Item;
typedef struct node * PNode;
typedef struct node
{
Item data;
PNode next;
}Node;
typedef struct
{
PNode front;
PNode rear;
int size;
}Queue;
/*构造一个空队列*/
Queue *InitQueue();
/*销毁一个队列*/
void DestroyQueue(Queue *pqueue);
/*清空一个队列*/
void ClearQueue(Queue *pqueue);
/*判断队列是否为空*/
int IsEmpty(Queue *pqueue);
/*返回队列大小*/
int GetSize(Queue *pqueue);
/*返回队头元素*/
PNode GetFront(Queue *pqueue,Item *pitem);
/*返回队尾元素*/
PNode GetRear(Queue *pqueue,Item *pitem);
/*将新元素入队*/
PNode EnQueue(Queue *pqueue,Item item);
/*队头元素出队*/
PNode DeQueue(Queue *pqueue,Item *pitem);
/*遍历队列并对各数据项调用visit函数*/
void QueueTraverse(Queue *pqueue,void (*visit)());
- 2023-09-04 20:50:03下载
- 积分:1
-
Earthquake magnitudo registered in San Francisco, during last 2 years plus white...
Earthquake magnitudo registered in San Francisco, during last 2 years plus white noise data
- 2022-01-25 19:03:55下载
- 积分:1
-
利用C语言实现迷宫算法。 利用随机函数生成迷宫,并显示所有路径!...
利用C语言实现迷宫算法。 利用随机函数生成迷宫,并显示所有路径!-use C language maze algorithm. Using random function generator maze, and that all paths!
- 2023-05-08 21:55:03下载
- 积分:1
-
有关启发式搜索的经典算法:A*最短路径算法的实例和对应程序。关注的朋友可以留意一下。(比传统的Dijistra算法效率高很多哦!^_^)...
有关启发式搜索的经典算法:A*最短路径算法的实例和对应程序。关注的朋友可以留意一下。(比传统的Dijistra算法效率高很多哦!^_^)-the heuristic search algorithm of the classic : A* shortest path algorithm examples and the corresponding procedures. Concerned friends can look. (Dijistra than the traditional algorithm efficiency is much higher oh 70,000
- 2022-01-26 05:59:44下载
- 积分:1
-
PB下的ATM机开发案例。谢谢参考!
PB下的ATM机开发案例。谢谢参考!-PB下的ATM机开发案例。谢谢参考!啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊
- 2022-08-25 13:55:38下载
- 积分:1
-
本代码是在有限状态机上补充教程
This code supplements the tutorial in Finite State Machines
- 2023-01-16 08:20:04下载
- 积分:1
-
shi.c
说明:本程序用于层序遍历二叉树.程序开始时先由用户先根序输入二叉树各结点值,对于空结点输入宏ENDTAG所对的值(暂定为整数0).
建立好二...
shi.c
说明:本程序用于层序遍历二叉树.程序开始时先由用户先根序输入二叉树各结点值,对于空结点输入宏ENDTAG所对的值(暂定为整数0).
建立好二叉树后即可自动进行遍历依次层序输出各结点的值.
----Author:zhg
2006.11.26
E-mail: wudazhg@163.com
仅供参考学习之用,所有权保留-shi.c : The procedures for the binary tree traversal sequence. procedures at the beginning of each user input first-sequence binary tree nodes value, for the importation of empty node by right-ENDTAG value (tentatively scheduled for integer 0). After a good binary tree can be automatically traversal sequence followed output of the node values.---- Author : zhg 2006.11.26 E-mail : wudazhg@163.com for reference purposes only learning, retention of title
- 2022-03-09 11:43:40下载
- 积分:1
-
功能:
1.添加单个成绩
2.批量添加成绩
3.通过搜索并修改与删除
4.直接修改
5.可以批量删除
6.可以直接GO到达你想...
功能:
1.添加单个成绩
2.批量添加成绩
3.通过搜索并修改与删除
4.直接修改
5.可以批量删除
6.可以直接GO到达你想到达的页-functions : 1. Add two individual achievements. Batch added three results. Search and amended with the deletion of four. 5 directly alter. Volume 6 can be deleted. GO can reach you directly to the arrival of page
- 2023-05-15 16:55:03下载
- 积分:1