C语言及程序设计进阶例程-14 开发一个电子词典

贺老师教学链接  C语言及程序设计进阶 本课讲解

开发一个电子词典(下载词库点击打开链接

#include <stdio.h>
#include<string.h>
#include<stdlib.h>

//定义词条类
typedef struct
{
    char english[20];
    char chinese[30];
    char word_class[10];
} Word;

Word words[8000];  //将词典数组设置成全局的结构体数组
int wordsNum=0;    //词典中的词条数目

/*从文件中将词读到字典中*/
void readDictionary()
{
    FILE *fp;
    //将文件中的数据读入到对象数组中
    fp = fopen("dictionary.txt","r");  //以输入的方式打开文件
    if(fp==NULL)       //测试是否成功打开
    {
        printf("dictionary open error!\n");
        exit(1);
    }
    while (!feof(fp))
    {
        fscanf(fp, "%s%s%s", words[wordsNum].english, words[wordsNum].chinese,words[wordsNum].word_class);
        ++wordsNum;
    }
    fclose(fp);
}

int BinSearch(int low, int high, char *key)
{
    int mid;
    while(low<=high)
    {
        mid=(low + high) / 2;
        if(strcmp(words[mid].english, key)==0)
        {
            return mid; //查找成功返回
        }
        if(strcmp(words[mid].english, key)>0)
            high=mid-1; //继续在w[low..mid-1]中查找
        else
            low=mid+1; //继续在w[mid+1..high]中查找
    }
    return -1; //当low>high时表示查找区间为空,查找失败
}

void searchWord(char *key)
{
    int low=0,high=wordsNum-1;  //置当前查找区间上、下界的初值
    int index=BinSearch(low, high, key);
    if(index>=0)
        printf("%s ---> %s \t %s", key, words[index].word_class, words[index].chinese);
    else
        printf("查无此词");
    printf("\n\n");
}

int main( )
{
    readDictionary();
    char key[20];
    do
    {
        printf("请输入待查询的关键词(英文),0000结束:\n");
        scanf("%s", key);
        if (strcmp(key,"0000"))
        {
            searchWord(key);
        }
        else
        {
            break;
        }
    }
    while(1);
    printf("欢迎再次使用!\n\n");
    return 0;
}
时间: 2024-09-20 00:16:25

C语言及程序设计进阶例程-14 开发一个电子词典的相关文章

C语言及程序设计进阶例程-21 银行储蓄系统(第五版)开发

贺老师教学链接  C语言及程序设计进阶 本课讲解 可以直接下载完整的项目文件bank.zip运行(点击打开链接,解压后打开项目,或者自建项目后加入源文件和头文件) 下面的代码,分别展示各个头文件.源文件:Bank.h #ifndef BANK_H_INCLUDED #define BANK_H_INCLUDED #define upNum 2000 //系统最多容纳的用户数 struct record { int account; //账号 int password; //密码 char nam

C语言及程序设计进阶例程-39 银行储蓄系统(第六版)开发

[贺老师教学链接]   [C语言及程序设计进阶]   [本课讲解]  bank.h /*注意:运行前要建立空文件account.bin*/ #ifndef BANK_H_INCLUDED #define BANK_H_INCLUDED #include <malloc.h> typedef struct { int account; //账号 int password; //密码 char name[10]; //用户名 double balance; //账户余额 int status; /

C语言及程序设计进阶例程-27 贪心法问题求解

贺老师教学链接 C语言及程序设计进阶 本课讲解 找零钱问题及其求解 #include <stdio.h> int main ( ) { int money[10]={100,50,10,0}; /*最大面额的硬值面值排在最前面,将被优先处理*/ int x; /*找零金额*/ int i=0, n=0, m; scanf("%d", &x); /*输入找零金额*/ while(x>0 && money[i]!=0) /**/ { m=x/mon

C语言及程序设计进阶例程-5 认识递归

贺老师教学链接  C语言及程序设计进阶 本课讲解 认识递归:求阶乘 #include <stdio.h> long fact(int n) { long f; if (n==1) f=1; else f=n*fact(n-1); return f; } int main( ) { int n; long y; scanf("%d", &n); y=fact(n); printf("%ld\n", y); return 0; }

C语言及程序设计进阶例程-7 递归经典:汉诺塔

贺老师教学链接  C语言及程序设计进阶 本课讲解 汉诺塔问题解决方案 #include <stdio.h> #define discCount 4 void move(int, char, char,char); int main() { move(discCount,'A','B','C'); return 0; } void move(int n, char A, char B,char C) { if(n==1) printf("%c-->%c\n", A, C

C语言及程序设计进阶例程-2 一个程序,多个文件

贺老师教学链接  C语言及程序设计进阶 本课讲解 演示:建立多文件的项目main.c #include <stdio.h> int max(int x,int y); int main( ) { int a,b,c; printf("输入两数:"); scanf("%d %d", &a, &b); c=max(a,b); printf("max=%d\n", c); return 0; } max.c int max(

C语言及程序设计进阶例程-18 链表中结点的插入和删除

贺老师教学链接  C语言及程序设计进阶 本课讲解 回顾:动态分配和撤销内存 #include <stdio.h> #include <malloc.h> struct Student { int num; float score; struct Student *next; }; int main( ) { struct Student *p; p=malloc(sizeof(struct Student)); p->num=31001; p->score=89.5;

C语言及程序设计进阶例程-37 二进制文件及其读写

贺老师教学链接 C语言及程序设计进阶 本课讲解 对比ASCII文件和二进制文件 //(1)将short int x=12321写入文本文件 #include<stdio.h> #include<stdlib.h> int main( ) { short int x=12321; FILE *outfile = fopen("ascii.txt", "w"); if(outfile==NULL) { printf("Cannot op

C语言及程序设计进阶例程-6 递归法问题求解

贺老师教学链接  C语言及程序设计进阶 本课讲解 求n! #include <stdio.h> long fact(int n) { long f; if (n==1) f=1; else f=n*fact(n-1); return f; } int main( ) { int n; long y; scanf("%d", &n); y=fact(n); printf("%ld\n", y); return 0; } 输入一个正整数n,反序输出其