c语言单词本的新增、删除、查询按顺序显示功能

 更新时间:2021年12月10日 14:10:12   作者:starmultiple  
这篇文章主要介绍了c语言单词本的新增、删除、查询按顺序显示功能,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

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);
			   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");

	
}
int addword(char p[][20], int n)
{
	int i, j;
	char 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("Iput 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 = i;
			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'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");
}

结果如下

如下

到此这篇关于c语言单词本的新增,删除,查询,按顺序显示的文章就介绍到这了,更多相关c语言单词本内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • 将正小数转化为2-9进制小数的实现方法

    将正小数转化为2-9进制小数的实现方法

    本篇文章对正小数转化为2-9进制小数的实现方法进行了介绍,需要的朋友参考下
    2013-05-05
  • c++文件监控之FileSystemWatcher

    c++文件监控之FileSystemWatcher

    为了监控web程序的静态文件是否被恶意改动,所以学习了一下FileSystemWatcher 类对文件的监控,由于还在初级阶段,这里只贴一下关于FileSystemWatcher学习的一些代码
    2019-04-04
  • 深入解析C++中的函数模板和函数的默认参数

    深入解析C++中的函数模板和函数的默认参数

    这篇文章主要介绍了深入解析C++中的函数模板和函数的默认参数,是C++入门学习中的基础知识,需要的朋友可以参考下
    2015-09-09
  • 解析如何利用switch语句进行字符统计

    解析如何利用switch语句进行字符统计

    本篇文章是对如何利用switch语句进行字符统计的方法进行了详细的分析介绍,需要的朋友参考下
    2013-06-06
  • C语言数据输入与输出实例详解

    C语言数据输入与输出实例详解

    这篇文章主要介绍了C语言数据输入与输出实例详解的相关资料,需要的朋友可以参考下
    2017-06-06
  • C语言实现简易扫雷游戏

    C语言实现简易扫雷游戏

    这篇文章主要为大家详细介绍了C语言实现简易扫雷游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-03-03
  • C++实现神经BP神经网络

    C++实现神经BP神经网络

    这篇文章主要为大家详细介绍了C++实现神经BP神经网络,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-05-05
  • c++11可变参数使用示例

    c++11可变参数使用示例

    这篇文章主要介绍了c++11可变参数使用示例,需要的朋友可以参考下
    2014-03-03
  • C++学习之移动语义与智能指针详解

    C++学习之移动语义与智能指针详解

    智能指针和移动语义是迄今为止,最难理解的两个概念,下面这篇文章主要给大家介绍了关于C++学习之移动语义与智能指针的相关资料,需要的朋友可以参考下
    2021-05-05
  • C/C++实现MD5校验学习

    C/C++实现MD5校验学习

    MD5全程Message-Digest Algorithm 5,即消息摘要算法第五版,是属于hash算法的一种,本文主要介绍了如何在C++中实现MD5校验,需要的可以了解下
    2024-03-03

最新评论