Linux下电子词典的设计与实现
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
毕业设计(论文)题目:Linux下电子词典的设计与实现
学生姓名
学号201022080223
班级通信102202H班
所属院(系)电子信息工程系
指导教师
2014 年5 月20日
Linux下电子词典的设计与实现
摘要
随着嵌入式技术的发展,智能移动终端的普及,用户对数据处理和管理需求也不断提高,更多的用户群也越来越希望能对嵌入式产品中的数据进行更有效的管理,嵌入式数据库便是一个非常有效的工具。如何在智能终端中使用嵌入式数据库以及如何让嵌入式数据库在嵌入式设备中充分有效的使用有限的存储资源成为嵌入式系统研究的重要方向。本文的主要任务是对电子词典的设计,主要功能有英译汉、汉译英、生词库储存等。本设计主要应用的技术有数据库、Qt、本设计用SQLite的B+树索引机制进行改进,将改进后的SQLite与Qt/Embedded相结合设计和实现智能终端中的电子词典。本设计的特点是操作简单、快速、实用性强。
关键词:嵌入式,用户界面,数据库,B+树
The Design and Implementation of Electronic Dictionary Based
on Linux
Abstract
With the development of embedded technology, the popularity of smart mobile devices, users of data processing and management needs is also rising, more and more users want to be able to embedded products for more efficient data management, embedded database is a very effective tool. How intelligent terminal using the embedded database and how to make an embedded database in embedded devices fully effective use of the limited storage resources has become an important research direction of embedded systems. The main task is to design electronic dictionary, the main function of Chinese Translation, Chinese to English, raw thesaurus storage. The main application of the technology are designed database, Qt, this design SQLite B + tree indexing mechanism to improve the improved SQLite with Qt / Embedded combining design and implementation of intelligent terminal electronic dictionary. This design is characterized by simple, fast, and practical.
KeyWords: Embedded,Qt,SQLite,B+ tree
目录
摘要........................................................................ I Abstract ................................................................... II 第1章绪论............................................................ - 1 -
1.1 研究背景和意义.................................................. - 1 -
1.2 数据库在电子词典中的应用........................................ - 1 - 第2章系统需求分析..................................................... - 3 -
2.1用户需求分析..................................................... - 3 -
2.2可行性分析....................................................... - 3 - 第3章相关技术......................................................... - 5 -
3.1 Qt/Embedded体系结构与框架....................................... - 5 -
3.2 Qt/Embedded的信号与槽机制....................................... - 5 -
3.2.1 信号与槽的连接与实现....................................... - 6 -
3.2.2 元对象编译器............................................... - 6 -
3.3 SQLite数据库.................................................... - 7 -
3.4 SQLite的索引机制................................................ - 7 -
3.4.1 B+树的概念................................................. - 8 -
3.4.2 B+树查找................................................... - 8 -
3.4.3 B+树插入................................................... - 8 -
3.4.4 B+树删除................................................... - 9 - 第4章电子词典的设计与实现............................................ - 10 -
4.1 建立电子词典的开发与运行环境................................... - 10 -
4.2 使用Qt/Embedded设计运用程序的方法............................. - 10 -
4.3 电子词典的界面设计与实现....................................... - 11 -
4.4 电子词典的功能设计与实现....................................... - 12 -
4.4.1 系统的功能模块图.......................................... - 12 -
4.4.2 功能的实现步骤............................................ - 12 - 第5章系统的界面实现.................................................. - 15 -
5.1 主界面......................................................... - 15 -
5.2 生词本界面..................................................... - 15 -