magic code 李亚文

 

2014年3月18日

【软件工程】电梯调度的初步实现 李亚文&&郭莉莉

摘要: 一、开门见山,代码粘using System;using System.Collections.Generic;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace lift{ public partial class Form1 : Form { int destion = 0;//目的楼层 int number = 0;//所到楼层 public Form1() { I... 阅读全文

posted @ 2014-03-18 14:39 magic code 李亚文 阅读(318) 评论(6) 推荐(1) 编辑

【软件工程】电梯调度程序需求分析 李亚文&&郭莉莉

摘要: 2014年3月4日(14:00-16:00)为了进一步理解电梯工作的原理,我们特地到石家庄铁道大学春晖楼坐了电梯:春晖楼东办共有电梯两部,最高楼层为11层,最低楼层为-1,两电梯可共同使用。结合调查结果,我们做出了如下分析:(1)建筑共有21层,其中含有地下一层(地下一层为停车场及货物运送场所)。(2)建筑内部设有4部电梯。(3)电梯内部有23个按钮,其中包括开门按钮、关门按钮和楼层按钮,编号为-1,1,2,3,4……20。(4)电梯外部含有两个按钮,即向上运行按钮和向下运行按钮。建筑顶层与地下一层例外,建筑顶层只设置有向下运行按钮,地下一层只设置有向上运行按钮。(5)电梯开关门完成时间设定为 阅读全文

posted @ 2014-03-18 14:36 magic code 李亚文 阅读(375) 评论(0) 推荐(1) 编辑

2014年3月11日

【软件工程】寻找一个整型数组的最大值问题

摘要: max函数很简单,但是要考虑的因素有很多下边这段程序:int lar(int list[],int length){ int i,max; max=list[0]; for(i=1;imax) max=list[i]; } return max;}这段程序在测试的时候会有下边这几种情况:1、2、3、4、5、上述情况结果有错误,由于测试出现的情况不可预知,因此要尽量多的考虑到各种情况,不能想当然第一种:循环的条件搞错了:将length-1改为length第二种:数组为空的情况,本来应该提示错误,加一个if。。。else即可第三种:输入为floa... 阅读全文

posted @ 2014-03-11 20:57 magic code 李亚文 阅读(204) 评论(0) 推荐(0) 编辑

2014年3月4日

【软件工程】用map 实现把英语文本文件词和个数打印出来

摘要: #include #include #include #include using namespace std;void main(void) { ifstream input("c:\\urce2.txt"); string str; map string_count ; while(input>>str){ ++string_count[str]; } map::iterator it=string_count.begin(); // begin函数返回指向map头部的迭代器 ... 阅读全文

posted @ 2014-03-04 21:02 magic code 李亚文 阅读(624) 评论(0) 推荐(0) 编辑

2014年3月1日

【软件工程】把文本文件中频度最高的10个词打印出来 编程日志之我就这么点水平

摘要: 先看结果:#include #include #include #includeusing namespace std;FILE *f1; //读文件struct kw //存放单词及其个数 { int key; char a[20]; };char c[20];struct kw list[300];void crehash() //把单词存入表中{ char ch; int k,flag=0,n=0,m=0,j=0; for(m=0;m63&&ch96&&ch63&&c... 阅读全文

posted @ 2014-03-01 22:45 magic code 李亚文 阅读(545) 评论(2) 推荐(0) 编辑

导航