软件学院实践教学环节任务书数据结构版

上传人:cn****1 文档编号:487886111 上传时间:2023-03-29 格式:DOC 页数:10 大小:118KB
返回 下载 相关 举报
软件学院实践教学环节任务书数据结构版_第1页
第1页 / 共10页
软件学院实践教学环节任务书数据结构版_第2页
第2页 / 共10页
软件学院实践教学环节任务书数据结构版_第3页
第3页 / 共10页
软件学院实践教学环节任务书数据结构版_第4页
第4页 / 共10页
软件学院实践教学环节任务书数据结构版_第5页
第5页 / 共10页
点击查看更多>>
资源描述

《软件学院实践教学环节任务书数据结构版》由会员分享,可在线阅读,更多相关《软件学院实践教学环节任务书数据结构版(10页珍藏版)》请在金锄头文库上搜索。

1、in 26 cases, long-term measures to implement the rate is 77% deployed 40 couples free pre-pregnancy health checks. -Balanced development of education. I attach great importance to control fits and starts work, to ensure that school-age children to school on time, hope dream poor students go to schoo

2、l to help poor students, help students complete nine years of compulsory education. Township school-age children enrollment rate up to 100%. -Home to poverty alleviation work in order. Complete the rural minimum living standard security system and the effective connection between pro-poor developmen

3、t policies, establish the Township poor electronic records and paper file documentation work, and cooperate with the superior unit holders, such as the statistical work of the poor masses. As of now, I enjoy the low 94 families, a total of 305, 44310 rural minimum living standard security issued org

4、anization 7 operational training full-time staff with disabilities participated in the County Federation organized 15 disabled people to participate in free training in farming skills; organization of 14 patients with cataract receiving free checks, participate in the examination will now undergo su

5、rgery had been successful. -Waste management policy in place. Seriously implement the subsidy policies such as direct subsidies for grain, returning farmland to forests this year agriculture agricultural policy subsidies total 554940, of which: farmers direct subsidies for grain 389880; reforestatio

6、n subsidies 165060. -Comprehensive management of public security work steadily. Full implementation of the measures for comprehensive management of social security, increasing crackdown on all illegal and criminal activities. As of now, my alarm 30 received, 7 all kinds of disputes, mediation succes

7、sfully 6; State criminal case 3, case 7, has been investigating the 7. -Stabilisation work of letters and calls for further strengthening. Received mass petitions from 10 successful mediation, 8, investigation 1, collective skipping appeal event does not occur. Meanwhile, further strengthen publicit

8、y and mobilization work, carried out in schools, kindergartens and surrounding environment group woven fire safety and food safety 6 times, 1 traffic safety publicity and education, legal literacy, drug pictures and materials via issuing 600 and guard against cult of special publicity activities 2 a

9、ttended by 300 people, mixture of anti-evil propaganda 70. Advancing the law of six thematic activities, through the easy way, with the film projectionist the village broadcast education 44, 3600 people returning to watch. -Further development of spiritual civilization construction work. Evening lei

10、sure time, organizations in the elderly in the rural culture of Hui Xiang Hui fitness dance square, greatly enriched the lives of the masses. Use of Arbor Day, 51 labor day, May Fourth youth day festivals, organize the education campaign for the festive, educational guide people to foster patriotism

11、, socialism, collectivism and strengthen love and loyalty to the party, firmly follow the party go . Implementation of the one gang double responsibility established number one responsibility, team member management works. Five are team building. Open-minded, innovative ways to meet the actual needs

12、 of target, combining education and political education in party lecture, unified planning, unified plan, take active measures to enhance cadres quality and ability. (B) a solid foundation steadily promoting the construction of数据结构实践教学环节任务书一、课程设计题目:迷宫问题求解二、目的与要求1、目的:通过布置具有一定难度的实际程序设计项目,使学生进一步理解和掌握课堂

13、上所学各种基本抽象数据类型的逻辑结构、存储结构和操作实现算法,以及它们在程序中的使用方法;使学生掌握分析问题,求解问题的方法并提高学生设计编程实现的能力。2、要求:基本要求:1. 要求利用CC+语言来完成系统的设计; 2. 突出C语言的函数特征(以多个函数实现每一个子功能)或者C+语言面向对象的编程思想;3. 画出功能模块图;4. 进行简单界面设计,能够实现友好的交互;5. 具有清晰的程序流程图和数据结构的详细定义;6. 熟练掌握C语言或者C+语言的各种操作。创新要求:在基本要求达到后,可进行创新设计,如系统用户功能控制,改进算法的实现,实现友好的人机交互等等 三、问题描述和求解方法:1 、问

14、题描述(功能要求):可以任意定义一个迷宫,用非递归的方法求出走出迷宫的通路,并把路径输出出来。要求: 存储结构、基本算法(可以使用程序流程图)、源程序、测试数据和结果、算法的时间复杂度、另外可以提出算法的改进方法。1) 迷宫的存储结构要合理;2) 应该考虑算法的时间和空间复杂度。3) 当确定迷宫的规模以及形态以后要把至少一条能走出迷宫的路径输出出来;4)程序应当满足正确性、可读性、健壮性和高效率及低存储量等目标要求,遵循代码规范,方便调试和阅读。2 、问题的解决方案:根据系统功能要求,可以将问题解决分为以下步骤:( 1 )迷宫可以采用二维数组来存储,迷宫的通路状态可以用不同的字符来表示;( 2

15、 )根据问题描述,设计算法的实现;( 3 )建议在解决问题时要采用栈或者队列数据结构;( 4 )完成算法的各个功能模块;( 5 )功能调试;( 6 )完成系统总结报告以及系统使用说明书。四、解题过程1. 分析程序的功能要求,划分程序功能模块。2. 画出系统流程图。3. 代码的编写。定义数据结构和各个功能子函数。4. 程序的功能调试。5. 完成系统总结报告以及使用说明书五、进度安排此次课程设计时间为一周,分以下几个阶段完成:1. 选题与搜集资料:每人选择一题,进行课程设计课题的资料搜集。2. 分析与概要设计:根据搜集的资料,进行程序功能与数据结构分析,并选择合适的数据结构、并在此基础上进行实现程

16、序功能的算法设计。3. 程序设计:运用掌握C/C+语言编写程序,实现各个模块功能。4. 调试与测试:调试程序,并记录测试情况。5. 完成课程设计报告。6. 验收与评分:指导教师对每个同学的开发的系统进行综合验收,并由学院考核小组进行随机抽查评分。六、撰写课程设计报告或课程设计总结课程设计报告要求:课程设计报告要求规范书写,应当包括如下7个部分:1. 需求分析2. 系统设计3. 程序流程图4. 类关系图5. 实现代码6. 总结7. 参考书目七、答辩与评分标准:1 、作业文档: 50 分;2 、基本功能和要求: 20 分;2 、设计报告及使用说明书: 10 分;3 、设置错误或者按照要求改变结果: 10 分;4 、回答问题: 10 分。八、参考资料 数据结

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 资格认证/考试 > 自考

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号