gpt4 book ai didi

java - 查找包含给定单词的句子的最短部分

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:26:22 25 4
gpt4 key购买 nike

例如: 如果给出一句话:
我的名字不是尤金。我的宠物名字不是尤金。
我们必须搜索包含给定单词的句子中的最小部分我的尤金那么答案将是尤金。我的
无需检查大写或小写或特殊字符或数字。
我粘贴了我的代码,但对某些测试用例的回答是错误的。

任何人都知道代码有什么问题吗?我没有错误的测试用例。

import java.io.*;
import java.util.*;
public class ShortestSegment
{
static String[] pas;
static String[] words;
static int k,st,en,fst,fen,match,d;
static boolean found=false;
static int[] loc;
static boolean[] matches ;
public static void main(String s[]) throws IOException
{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
pas = in.readLine().replaceAll("[^A-Za-z ]", "").split(" ");
k = Integer.parseInt(in.readLine());
words = new String[k];
matches = new boolean[k];
loc = new int[k];
for(int i=0;i<k;i++)
{
words[i] = in.readLine();
}
en = fen = pas.length;
find(0);
if(found==false)
System.out.println("NO SUBSEGMENT FOUND");
else
{
for(int j=fst;j<=fen;j++)
System.out.print(pas[j]+" ");
}

}
private static void find(int min)
{
if(min==pas.length)
return;
for(int i=0;i<k;i++)
{
if(pas[min].equalsIgnoreCase(words[i]))
{
if(matches[i]==false)
{
loc[i]=min;
matches[i] =true;
match++;
}
else
{
loc[i]=min;
}
if(match==k)
{
en=min;
st = min();
found=true;
if((fen-fst)>(en-st))
{
fen=en;
fst=st;
}
match--;
matches[getIdx()]=false;
}
}
}
find(min+1);
}
private static int getIdx()
{
for(int i=0;i<k;i++)
{
if(words[i].equalsIgnoreCase(pas[st]))
return i;
}
return -1;
}
private static int min()
{
int min=loc[0];
for(int i=1;i<loc.length;i++)
if(min>loc[i])
min=loc[i];
return min;
}


}

最佳答案

您提供的代码将为以下输入生成错误的输出。我假设,当您想“查找包含给定单词的句子的最短部分”时,单词长度也很重要

String: 'My firstname is eugene. My fn is eugene.'
Number of search strings: 2
string1: 'my'
string2: 'is'
Your solution is: 'My firstname is'
The correct answer is: 'My fn is'

您的代码中的问题是,它认为“firstname”和“fn”的长度相同。在比较 (fen-fst)>(en-st) 中,您只考虑单词数量是否已最小化,而不是单词长度是否已缩短。

关于java - 查找包含给定单词的句子的最短部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11284581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com