BF算法C语言

本文介绍了如何使用C语言实现BreadthFirstSearch(BF)算法,用于在一个字符串中查找给定子串,并从特定位置开始搜索。代码展示了用户输入主串、子串和起始位置,然后调用BF函数进行查找。
摘要由CSDN通过智能技术生成
# include <stdio.h>
# include <assert.h>
# include <string.h>

int BF(char* str, char* sub, int pos)
{
	assert(str != NULL && sub != NULL);
	if (str == NULL || sub == NULL)
	{
		return -1;
	}
	
	int lenstr = strlen(str);
	int lensub = strlen(sub);
	if (pos < 0 || pos > lenstr-1)
	{
		return -1;
	}
	int i = pos;
	int j = 0;
	while (i < lenstr && j < lensub)
	{
		if(str[i] == sub[j])
		{
			i++;
			j++;
		}
		else
		{
			i = i-j+1;
			j = 0;
		}
	}
	if (j > lensub-1)
	{
		return i-j+1;
	}
	return -1;  
	
	
}

int main() {
	char a[100], b[100]; // 定义字符数组来存储输入的字符串  
	int pos;
	printf("请输入主串:");
	scanf("%99s", a);    // 可以不加& 
	printf("请输入字串:");
	scanf("%99s", &b);
	printf("请输入从第几号位开始匹配:");
	scanf("%d", &pos);
	int n;
//	printf("%s", a);
	n = BF(&a, b, pos-1);     // 可以不加& 
	if(n == -1)
	{
		printf("没有找到!\n");
	}
	else 
	{
		printf("查找到的位置是:%d", n);
	}
	
	
	return 0;
}

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值