欢迎来到天天文库
浏览记录
ID:29698108
大小:1.14 MB
页数:46页
时间:2018-12-22
《基于C语言的文本编辑器 ——部分编辑功能模块和菜单功能模块---毕业论文》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、本科毕业论文基于C语言的文本编辑器——部分编辑功能模块和菜单功能模块ATextEditorBasedOnCProgrammingLanguage——EditingModuleandMenuActionsModule姓名:学号:学 院:软件学院系:软件工程专业:软件工程年级:指导教师:年月摘 要文本编辑器,是一种可见于任何操作系统的常用工具:Unix或者Unix家族的操作系统有vi编辑器,Windows操作系统有notepad编辑器,Mac操作系统也有SimpleText编辑器。而接下来我们要论述的文本编辑器是一个具有
2、不同思维模式的文本编辑器,它同样被设计用于16位机器,但是针对16位机器内存使用受限制这一约束,提出了逻辑文件页的概念,使这一问题能妥善得到解决。逻辑文件页这样的概念的提出使得内存使用得到了优化。因为我们在编辑文本的某一个时刻只会集中在文件的某个区域,也就是说其他部分的文本此时其实是可以保存在磁盘上。如果我们能够保证在操作这个特定区域的时候,相应部分的文本处于内存中那么它就可以正常的工作而不会发生错误,从而内存得到很大节省。这也就意味着我们在加载文件的时候没有必要一次性加载了,这些全都得益于逻辑文件页的出现以及由它而定
3、义的文件存储格式。本文结合文本编辑器的各个功能的实现,阐述了逻辑文件页的概念,相信大家可以从中感受到逻辑文件页的巧妙使用,也会体会到使用逻辑文件页的必要性。关键词:文本编辑器;逻辑文件页;内存优化AbstractTexteditor,asacommontool,isavailableonanyoperatingsystem:UnixandUnix-likeoperatingsystemshavethevieditor,Windowsoperatingsystemscomewiththenotepadeditor,and
4、onMacoperatingsystemthereistheSimpleTexteditor.Inthefollowing,theeditorwhichwillbediscussedhasauniquethoughtbehindwhichthereisatotallydifferentideology.Itisdesignedtobeusedon16-bitmachine,butinordertobreakthroughthelimitationoflimitedmemoryof16-bitmachine;logica
5、lfilepageisbroughtup,whichindeedcansolvetheproblemappropriately.Sinceourfocusonthefilewillbelimitedtoaspecificareawhileediting,thatistosay,otherpartscanactuallyremainonthedisk.Ifwecanguaranteethatthepartbeingoperatedonresidesinmemory,errorswouldnotariseduetothem
6、emoryreasons.Asaresult,thememoryusehasbeenminimizedinasense.Atthesametime,italsomeansthatwedonothavetoloadthewholefileandalloftheseaccreditfromthatconcept.Thispaperexplicatestheconceptoflogicalfilepagebasedontherealizationsofallkindsoffunctionalitiesofaneditor,t
7、hroughwhichIbelieveyoucanfeelthemagicpoweroflogicalfilepage,aswellasthenecessityoflogicalfilepage.Keywords:texteditor;logicalfilepage;memoryoptimization.目录第一章引言11.1背景11.2本文的章节安排1第二章编辑功能32.1几个基础函数的介绍32.2backspace键的功能实现42.3delete键的功能实现102.4home键和end键的功能实现11第三章菜单功能
8、133.1查找功能133.1.1查找功能简介133.1.2KMP算法133.1.3highlight、storehighlightinfo和resethighlightinfo函数143.1.4onfind实现查找功能143.1.5查找功能演示153.2替换功能163.2.1替换功能简介163.2.2Replace子功能173.2
此文档下载收益归作者所有