Java与面向对象程序设计课程设计基于Java的哈夫曼编码译码系统_第1页
Java与面向对象程序设计课程设计基于Java的哈夫曼编码译码系统_第2页
Java与面向对象程序设计课程设计基于Java的哈夫曼编码译码系统_第3页
Java与面向对象程序设计课程设计基于Java的哈夫曼编码译码系统_第4页
Java与面向对象程序设计课程设计基于Java的哈夫曼编码译码系统_第5页
已阅读5页,还剩12页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、课 程 设 计 课程名称 java与面向对象程序设计 课程设计 题目名称_基于java的哈夫曼编码译码系统学生学院 自动化学院 _ _专业班级_网络三班_姓名:_ 学号_指导教师_ _2011 年 6 月 10 日目 录1问题描述和分工情况1.1 问题描述使用java语言实现哈夫曼算法,对英文文章进行编码和译码。输入输出界面要求使用web页面,用jsp实现。1.2 分工情况组长:曾庆伟在本课程设计是负责如下工作:1, 环境的搭建(主要是web服务器的搭建)2, 代码编写工作,实现本课程设计的主要功能,即对英文的编码以及译码。3, 主要的界面设计,主要是设计jsp的界面组员1:徐华涛 王锦贤 周

2、基霖1,主要负责上网搜索26个英文字母在文章中出现的概率,并且根据哈夫曼算法设计出26个字母对应的编码。2,画出设计的编码图2系统总体设计2.1 系统设计方案综述设计方案:这个课程设计就是围绕着吧哈夫曼编码体现出来的目的做的第一步是把在输入框中的字符串也就是需要编码的文章转成01的字符串。这里我设计成可以显示出来01字符串第二步,在本地,也就是输入框那个jsp页面吧他的类型转成byte,这样就真正实现了他的目的传送的时候能节省流量。2.2 系统模块设计没什么模块的,就是一整体实现那功能。2.3 数据库设计无数据库2.4 系统功能设计就是简单的传送文件2.5 界面设计很简单的黄绿两种颜色:2.6

3、 开发环境描述开发环境是在macromedia dreamweaver 8 上进行的。主要是因为这个课程设计的要求比较简单,还有因为方便设计界面,.3系统详细设计3.1 网上搜索资料abc26个英文字母出现概率e - 0.1268t - 0.0978a - 0.0788o - 0.0776i - 0.0707n - 0.0706s - 0.0634r - 0.0594h - 0.0573l - 0.0394d - 0.0389u - 0.0280c - 0.0268f - 0.0256m - 0.0244w - 0.0214y - 0.0202g - 0.0187p - 0.0186b - 0

4、.0156v - 0.0102k - 0.0060x - 0.0016j - 0.0010q - 0.0009z - 0.00063.2 画哈夫曼编码图为(加入了字符,。!等等)1二一三四一aslgy。,()!- 回车!二ordpb三tnmfwxkvjzqend四eihcu3.3 转成编码为:a:0010b:010010c:111100d:01000e:110f:101111g:000010h:111110i:1110j:1011001110k:10110010l:00000n:1010m:101110o:011p:010011q:10110011111r:0101s:0001t:1000u:

5、111101v:1011000w:101101000x:101100110y:000011z:10110011110 :00110000,001111.,001110 :001100011!:00110010-:00110011(:0011010:00110113.4 系统主要函数及其功能描述3.5 核心代码片段描述和注释4系统部署4.1 开发环境的建立开发环境:web服务器用的是apache编写代码的工具: dreamweaver 84.2 系统运行环境的建立运行的操作系统是windows xp浏览器是用ie84.3 系统的部署和运行5系统测试和运行效果5.1 系统运行主要界面及其功能说明在

6、这个输入框中输入要编码的文章。然后点击转成哈夫曼编码按钮即可。5.2 系统测试数据描述输入测试文章为:christmas celebrations in the west today from november onwards, it is impossible to forget that christmas is coming. coloured lights decorate many town centres and shops, along with shiny decorations, and artificial snow painted on shop windows. in

7、streets and shops, christmas trees (real or plastic evergreen conifer trees) will also be decorated with lights and christmas ornaments. shopping centres become busier as december approaches and often stay open till late.shopping centre speaker systems systems will play christmas carols - the tradit

8、ional christmas christian songs, and groups of people will often sing carols on the streets to raise money for charity. most places of work will hold a short christmas party about a week before christmas. although traditional christmas foods may be eaten, drink (and plenty of it) means that little w

9、ork will be done after the party! by mid-december, most homes will also be decorated with christmas trees, coloured lights and paper or plastic decorations around the rooms. these days, many more people also decorate garden trees or house walls with coloured electric lights, a habit which has long b

10、een popular in usa. in many countries, most people post christmas greeting cards to their friends and family, and these cards will be hung on the walls of their homes. in uk this year, the british post office expects to handle over 100 million cards each day, in the three weeks before christmas. chr

11、istmas cards the custom of sending christmas cards started in britain in 1840 when the first penny post public postal deliveries began. (helped by the new railway system, the public postal service was the 19th centurys communication revolution, just as email is for us today.) as printing methods imp

12、roved, christmas cards were produced in large numbers from about 1860. they became even more popular in britain when a card could be posted in an unsealed envelope for one half-penny - half the price of an ordinary letter. traditionally, christmas cards showed religious pictures - mary, joseph and b

13、aby jesus, or other parts of the christmas story. today, pictures are often jokes, winter pictures, father christmas, or romantic scenes of life in past times.5.3 系统运行和测试结果运行的结果显示为:11110011111001011110000110001011100010000100110000111100110000001100100100101001010001110011101000010011000011101010001

14、100001000111110110001100001011010001100001100000110000100001101000001000001100110000001100010010111101010111011100011000010100111011000110101110010010110010100110000011101010110100000100101010000001001111001100001110100000110000111000010011000011101011100100110110001000111100100100000011000110000100

15、001100110000101111011010100001011010000011000010001111100010100000110000111100111110010111100001100010111000100001001100001110000100110000111100011101110111010100000100011100011000011110001100000011111101010111001000001100000000011100000101111101000000100110000010001101111000110101001010001100011000

16、010111000101010000011001100001000011101101000101000110000111100110101010000101110000100110000001010100100000110000000111111001101001100010011110011000000100000001110100000100011000010110100011101000111110001100000001111110111010100000110011000001000110111100011010100101000111001110100001001111001100

17、000010101001000001100000010010110001110101111111011110011100010000000011000000011010011101101000001100000100110010111010101000110010000011000001110100011000000011111100110100110011000010110100011101010010000111011010000001001110001100000011000100001100010011101010001100000001100001011101101000000100

18、110000001010100100000110000000111111001101001100010011110011000000110001111110011111001011110000110001011100010000100110000100001011101100001001100011001100000011010010111000100000000110000011010100110000010011000000010000110001110111100001100001101011000110010100001001011101101010001100000011000111

19、111000111010111010111111001010011000110011000010000101110110000100110110011000010110100011100000000000001100000010000000001011001100000100101100011000001000110111100011010100101000110010000011000010110100011101000111110001100000000011100000101111101000000100110000001010100100000110000111100111110010

20、111100001100010111000100001001100000110101101000101011101101010100000010011100011000000110001000011000000110000001100010000011111100110100110100111110101000001000110000111100110101010000101110000100110000010010110111100011101110110001100000100101111010001111011001010011000000100001001100000100011011

21、110011010111001001011001010011000000100100110100110101011001011110011111011000010011000000101010010000011000001110111110001101010001100000001100000100000110011000001101001111010100011000010001110000000000000110000000000010100011000111000011111100110100110100111110101000001000110000111100110101010000

22、101110001100000001010011110001010110010110010100110000000100001100011000110101110000100110000000100001100011000110101110000100110000101101000111000000000000011000001001100000001000001100110000111100111110010111100001100010111000100001001100000011000111111000010010101100000000100110001100110000001100

23、110011000010001111101100011000010000101001001000111010001110011101000100000000110000111100111110010111100001100010111000100001001100001111001111100101111000011000111000101010001100000001011101000001000010011110011000000101010010000011000000001001010111111010100110001001100000111011110011000001001111

24、001101001100000110001100001011010001110000000000000110000011101111100011010100011000000011110101000001000110000111100001001010110000000010011000001110100011000010001111101100011000000011000010111011010000001001100001000011001100000101001011100001110001100001011100111010110000011001100001011110110101

25、001100001111001111100010010111101000000011001110001100001011100110001100000110000010011000000010111100110000100110000011101111001100001011010000110101101100100011000010110100011100000000000001100001111100110000001000001100000010001100000001111110011010110000011000011110011111001011110000110001011100

26、010000100110000010011001001011000000011001100000010010010011111101100000110000001000110000101101000110110101100100011000001001011010111101101011100011000011110011111001011110000110001011100010000100111000110000001000000100011111001111110100001011111000110000100001010010010001110100011100111010001000

27、000001100001111001111100101111000011000101110001000010011000010111101101101000000100110000101110001000001100110000010010110001100001100010100011010100011110011000001000010111101010101100100011000000110100010101001000001100000100110000011010101000000011001100000111011110011000011101000001101100110000

28、101110110001010100001001100001000111110001010000011000000000111010001000000001100011000010110100001101011011001000110000101101000111000000000000011000001001011000110000010000111010110001100000010101111100011001010011000010001111101100011000001001100100101100000001100110010001100000011000100010010000

29、011001100001011101110010000011001101000110111100110101110010010110010100111100110000101110011000110000011000011111001110111011000010011000010110100011100000000000001100000010000000001011001100000100101100011000001000110111100011010100101000110010000011000010110100011101000111110001100001111001111100

30、101111000011000101110001000010011000010000101110110000100111100110000111100011000000111111010101110010000011000000000111000001011111010000001001100000010101001000001100000100110010010011110010100110000011010100110000010011000000010000110001110111100001100000100011011110001101010010100011100111010000

31、100110000001001010111111011010010000011000010001111101100011000001010110111011100001001110001100001000111110110000111000110000010000010000011000100111100110000101110001010100000110011000010111001101011100011000001001111001101001100000110001100000010000000001011001100000100011011110001101010010100011

32、000110000000010001001010100011010100011000010000101110110000100110000011010100110000111110011111101000111000110000101101000001000000000000001001100001011010001110100011111000110000111100011000000111111010101110010000011000011000000110111100100001011110111100001100000000011100000101111101000000100111

33、100110000001000110000111110001001001011101000001100001011010001111101110111100111110001100001111100010000100110000000000111010000010001100000100101101101010001100000100110110100111111010000000100101001100001110101000110000111101000100100011100011000100001100000011000000110000001100010011101010001100

34、001011100010101000001100110000111100011111101101010000101111011000010011110011000010111001100011000001100000100111100110100110000011000110000010011011000110000011000011110011111001011110000110001011100010000100110000000010010111011010001110101000001000110000111100001001010100000010011000010000110011

35、000010001111101101110010100110000101111010111101101010010000001001100000010101001000001100001011110010101110111000000000011001111001100000010101001000001100001000111110110000111000110000111100001001010100000010011000010110100011100000000000001100000100101100011000011111011110110100000100011000001110

36、100011000010001111101100011000010110100000100000000000000100110000011101111001100001000111110110111001010011000011111001110111011000010011100011000011101010001100001111011011001000110000100011111011100001001100000000111100010010100111100110000100011111011000110000010010010111101000111000011111100011

37、000001001101100011000001100000111011111011111110111100110001100001101011001100100111101111001000000100110000100001100110000111110001010100100000000110001100000111011000110010100110000111111101101111111011011111100110000101110111000000000001110011101000110000111100001001010100000010011000011000101111

38、001111100011000001000001000001100111100110000111010100011000010001111101100011000010001111100101110110001100001011010001101101011001000010011000001001011010111101101011100011000011110011111001011110000110001011100010000100111000110000001100010011110011111001011110000110001011100010000100110000111100

39、001001010100000010011000000110001001000111110110001100001111001111010001100001110111000110000011101111001100000001110101001000111010100000100011000011110011111001011110000110001011100010000100110000111100001001010100000010011000000011000001001011000110010000011000011101010001100000100100101111010000

40、010111010100011000011101010001100001111111011011110101101100101101111110011000010110100011111011010100011000010001111101100011000010111111100101000110000011000000110001101001111010101010000011001100000100110110001100000110001100110000010011111101010010000001110111100001100000100110110001100000100000

41、000110000010001100000011101011000110010111101100001001100000100101100000100010101000111000110000001101011111011000000010011110010000011000001001000001100110000100011111011000110000101011010110100000110000010100101110000001011010000010000011001100000001000011000110001101011100011110011000010001111101

42、100011000001001111110101001000000111011110000110000010011011000110000010000000011000000011100101101100011101111001100011000010110100000100001001100001000111110110001100001111111011011111010001111100011000011110011010101000111101010100001100110001100010011000011110001110111010111011110110101110111100

43、001010001110011101000110000010111010110000110000011110110001110011101000111100110000101100111011110100011000001100000010000100110000110101110001011100000000110000111000010011000010111101101010011000011110100010011000010000110100000100000110011100011011001100000010000100110000010011010111101010100011

44、101010000010001100001011101101000111110011010000001001100001110101110010011010101110110001100100000111100110000111100111110010111100001100010111000100001001100001111000010010101000000100110000101101000110010111000110000010011010101101000111101111100110010000011000011101010001100000000000100101000010

45、110001100001010111101101110010010110010100010011000010111101010111011100011000000100100100111111011000001100001111111011011110101101110110110111111001110001100001000111110110000011001100000100101101111000010101110110001100001101011000110101000110000101110011010111000110000010011011010011111101000000

46、010010100110000111010100011000001001001011110100000101110101000110000101101000111110110101000110000001000110000111100001001010100000110000111100011111101000000100000110000010010110001100000100110110001100011001000001100001110101000110000001010100011000011110110100001110001000000110010000011000011010

47、101011000110000000110100111100011000010111101101010011000001110101100011000011111000100000010111100110011010011110101010100000110011000000110011001100001111100010000001011110011000010001111101100011000001001101011110111100110001100000111011110011000000101010001100000110101010001110101000100101000011

48、001100000000011010001000110010100111000110000001100010000110001001000010100100100011101000111001110100010000000000000001100111100110000111100111110010111100001100010111000100001001100001111000010010101000000100110000000111111001110110100011001000001100000101110000001110000010111001111110100010011000

49、001001111101111001000111101010111000010011000000110011001100001011100010010100001100111100110000101100111001100011100100111111100011000000101010010000011000001001000100100100000110011000010110011101100001111101000100111100110000011010100110000011100011111011001010011000001001100100101100000010011000

50、001110111100110000100011111011000110000111100111110010111100001100010111000100001001100000001100001101010000110011100011000010000110100000100000110011110011000001001111101111001000111101010111000010011000000100101110001100000111011111000110101000110000101100111001110110010110000100111100110000101101

51、000111010101000110010100110000010011111011110010001111010101110000100111100110000101111001010001111101100101001100001111001111100101111000011000101110001000010011110011000001101010011000001010111011100010101010001110111100001100000001111100110101011000010011000001110111100110000000001110101111110001

52、1000011101010001100000100110010000110000011000010001110101110110000100111000110001000011000000110001001011001111110000000然后再点击转成abc英文按钮即可转回去:christmas celebrations in the west today from november onwards, it is impossible to forget that christmas is coming. coloured lights decorate many town centres

53、 and shops, along with shiny decorations, and artificial snow painted on shop windows. in streets and shops, christmas trees (real or plastic evergreen conifer trees) will also be decorated with lights and christmas ornaments. shopping centres become busier as december approaches and often stay open

54、 till late.shopping centre speaker systems systems will play christmas carols - the traditional christmas christian songs, and groups of people will often sing carols on the streets to raise money for charity. most places of work will hold a short christmas party about a week before christmas. altho

55、ugh traditional christmas foods may be eaten, drink (and plenty of it) means that little work will be done after the party! by mid-december, most homes will also be decorated with christmas trees, coloured lights and paper or plastic decorations around the rooms. these days, many more people also decorate garden trees or house walls with coloured electric lights, a habit which has long been popular in usa. in m

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论