不知道哪里不对,结果一直是错的
public class BF{
public static int bf_cmp(String S, String T){
int m=T.length();//T长
int n=S.length();//S长
int i,j;//记录主串下一次比较起始位置
for(i=0; i<m-n; i++) {
j=0;
while(j<n && T.charAt(i+j)==S.charAt(j)) {//查找满足条件的
j++;
}
if(j==n) {
return i; //返回模式在文本中的开始位置
}
}
return -1;
}
public static void main(String[] args) {
int pos=0;
pos = bf_cmp("abcdefgh","fgh");
if(pos != -1)
System.out.print("T在S中第:"+pos+"个位置");
else
System.out.print("不匹配");
}
}
来源:CSDN
作者:小杨加油
链接:https://blog.csdn.net/weixin_44032992/article/details/104735050