C语言练习——单词本管理

练习代码——单词本管理

源代码如下:
#include<stdio.h>
#include <string.h>
#define SIZE 100
int addword(char p[][20], int n);
int findword(char p[][20], int n, char* f);
int delword(char p[][20], int n, char* f);
void display(char p[][20], int n);
void menu();
int main()
{
	char myword[100][20];
	char word[20];
	char choice;
	int count = 0;
	int pos = -1;
	do {
		menu();
		printf("Please input your choice:");
		scanf("%c", &choice);
		getchar();
		switch (choice)
		{
		case'1':
			count = addword(myword, count);
			break;
		case'2':
			printf("Please input what you are looking for:");
			gets(word);
			pos = findword(myword, count, word);
			if (pos != -1)
				printf("It's the %d word\n", pos + 1);
			else
				printf("It's not in myword list!\n");
			break;
		case'3':
			printf("Please input what you want to delete:");
			gets(word);
			count = delword(myword, count, word);
			break;
		case'4':display(myword, count);
			break;
		case'0':choice = 0; break;
		default:
			printf("Error input,please input your choice again!\n");
		}
	} while (choice);
	return 0;
}

void menu()
{
	printf("          --------1.增加单词--------\n");
	printf("          --------2.查询单词--------\n");
	printf("          --------3.删除单词--------\n");
	printf("          --------4.显示单词--------\n");
	printf("          --------0。退    出--------\n");
	return;
}

int addword(char p[][20], int n)
{
	int i, j;
	int pos = -1;
	char flag = 'y';
	char tmp[20];
	while (flag == 'y' || flag == 'Y')
	{
		if (n == SIZE)
		{
			printf("Word list is full\n");
			break;
		}
		else
		{
			printf("Input your word:");
			gets(tmp);
			pos = findword(p, n, tmp);
			if (pos != -1)
			{
				printf("the word exits!\n");
				break;
			}
			else
			{
				if (n)
				{
					for (i = 0; i < n && strcmp(tmp, p[i])>0; i++);
					for (j = n; j > i; j--)
						strcpy(p[j], p[j - 1]);
					strcpy(p[i], tmp);
					n++;
				}
				else
				{
					strcpy(p[0], tmp);
					n = 1;
				}
			}
			printf("Another word?(y/n):");
			scanf("%c", &flag);
			getchar();
		}
	}
	return n;
}

int findword(char p[][20], int n, char* f)
{
	int i;
	int pos = -1;
	for (i = 0; i < n; i++)
	{
		if (!strcmp(p[i], f))
		{
			pos = 1;
			break;
		}
	}
	return pos;
}

int delword(char p[][20], int n, char* f)
{
	int i;
	int pos = -1;
	pos = findword(p, n, f);
	if (pos == -1)
		printf("It's not in myword list!\n");
	else
	{
		for (i = pos; i < n - 1; i++)
		{
			strcpy(p[i], p[i + 1]);
		}
		n = n - 1;
	}
	return n;
}
void display(char p[][20], int n)
{
	int i;
	if (n)
	{
		for (i = 0; i < n; i++)
			puts(p[i]);
	}
	else
		printf("There is no word in myword list!\n");
}

运行结果:

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值