问题描述
我需要编写一种方法来检查其他字符串上的\“ String str \”,并返回str开始的索引。
听起来像是家庭作业,是一些家庭作业,但供我学习测试用...
我试过了:
public int IndexOf (String str) {
for (i= 0;i<_st.length();i++)
{
if (_st.charat(i) == str.charat(i)) {
i++;
if (_st.charat(i) == str.charat(i)) {
return i;
}
}
}
return -1;
}
但我没有得到正确的回报。为什么?我走对了路还是走不近?
解决方法
恐怕你还不亲密。
这是您要做的:
循环处理字符串的字符(您应该在该字符上执行
indexOf
,我将其称为主字符)(您正在执行此操作)
对于每个字符,请检查您其他字符串的字符和此字符是否相同。
如果它们是(相同序列的可能的开始),请检查母版中的下一个字符是否与您的字符串匹配以进行检查(您可能希望遍历字符串的元素并逐个检查)。
如果不匹配,请继续使用主字符串中的字符
就像是:
Loop master string
for every character (using index i,lets say)
check whether this is same as first character of the other string
if it is
//potential match
loop through the characters in the child string (lets say using index j)
match them with the consecutive characters in the master string
(something like master[j+i] == sub[j])
If everything match,\'i\' is what you want
otherwise,continue with the master,hoping you find a match
其他一些要点:
在Java中,方法名称以
约定小写字母
(这意味着编译器不会
抱怨,但是你的程序员同伴
可以)。所以ѭ3实际上应该是
indexOf
具有实例变量
(类级别变量)以
_
(如_st
)并不是很好
实践。如果你的教授坚持
您可能没有太多选择,但是
请记住这一点)
, 恐怕不是很近。该代码的基本作用是检查两个字符串在任何位置的相同位置是否有两个字符,如果是,则返回这些字符中第二个字符的索引。例如,如果_str
是\“ abcdefg \”,而str
是\“ 12cd45 \”,则您将返回3,因为它们在同一位置具有\“ cd \”,并且这是\“ d \”。至少,据我所知,它实际上在做什么。那是因为您正在使用相同的索引变量来索引两个字符串。
要重写indexOf
,在_st
中寻找str
,必须扫描_st
中的character8ѭ中的第一个字符,然后检查其余字符是否匹配;如果不是,请从您开始检查的位置向前移动一个位置,然后继续扫描。 (可以做一些优化,但这就是本质。)例如,如果您在_st
的索引4上找到str
的第一个字符,而str
则是六个字符长,找到了您需要的第一个字符查看其余五个(包括str
\的索引1-5)是否匹配_st
\ n的索引5-10(最简单的方法是检查str
的所有六个字符是否与_st
的从4开始的子字符串相去)六个字符)。如果所有内容都匹配,则返回找到第一个字符的索引(在该示例中为4)。您可以在_st.length() - str.length()
停止扫描,因为如果在此之前没有发现它,则根本不会找到它。
观点:不要在每个循环中都调用length
函数。 JIT可能可以优化呼叫,但是如果您知道_st
在此功能过程中不会发生变化(并且如果您不知道,则应要求这样做),将grab24ѭ转到本地然后参考。当然,由于您知道可以早于length()
停下,所以您将使用当地人来记住可以停下的地方。
, 对于两个相等的字符串,您都使用i
,但您要的是第一个始终以0开头的字符串,除非找到该字符是另一个字符串。然后检查下一个字符是否相等,依此类推。
希望这可以帮助
, 您的代码循环遍历要搜索的字符串,如果位置i上的字符匹配,它将检查下一个位置。如果字符串在下一个位置匹配,则假定字符串str包含在_st中。
您可能想做的是:
跟踪整个str是否包含在_st中。您可能可以检查所搜索的字符串的长度是否等于到目前为止匹配的字符数。
如果执行上述操作,则可以通过从i的当前值中减去到目前为止的匹配数来获得起始索引。
一个问题:
为什么不使用内置的String.IndexOf()函数?这项任务是为了让您自己实现此功能吗?
, 也许Oracle Java API源代码确实可以帮助您:
/**
* Returns the index within this string of the first occurrence of the
* specified substring. The integer returned is the smallest value
* <i>k</i> such that:
* <blockquote><pre>
* this.startsWith(str,<i>k</i>)
* </pre></blockquote>
* is <code>true</code>.
*
* @param str any string.
* @return if the string argument occurs as a substring within this
* object,then the index of the first character of the first
* such substring is returned; if it does not occur as a
* substring,<code>-1</code> is returned.
*/
public int indexOf(String str) {
return indexOf(str,0);
}
/**
* Returns the index within this string of the first occurrence of the
* specified substring,starting at the specified index. The integer
* returned is the smallest value <tt>k</tt> for which:
* <blockquote><pre>
* k >= Math.min(fromIndex,this.length()) && this.startsWith(str,k)
* </pre></blockquote>
* If no such value of <i>k</i> exists,then -1 is returned.
*
* @param str the substring for which to search.
* @param fromIndex the index from which to start the search.
* @return the index within this string of the first occurrence of the
* specified substring,starting at the specified index.
*/
public int indexOf(String str,int fromIndex) {
return indexOf(value,offset,count,str.value,str.offset,str.count,fromIndex);
}
/**
* Code shared by String and StringBuffer to do searches. The
* source is the character array being searched,and the target
* is the string being searched for.
*
* @param source the characters being searched.
* @param sourceOffset offset of the source string.
* @param sourceCount count of the source string.
* @param target the characters being searched for.
* @param targetOffset offset of the target string.
* @param targetCount count of the target string.
* @param fromIndex the index to begin searching from.
*/
static int indexOf(char[] source,int sourceOffset,int sourceCount,char[] target,int targetOffset,int targetCount,int fromIndex) {
if (fromIndex >= sourceCount) {
return (targetCount == 0 ? sourceCount : -1);
}
if (fromIndex < 0) {
fromIndex = 0;
}
if (targetCount == 0) {
return fromIndex;
}
char first = target[targetOffset];
int max = sourceOffset + (sourceCount - targetCount);
for (int i = sourceOffset + fromIndex; i <= max; i++) {
/* Look for first character. */
if (source[i] != first) {
while (++i <= max && source[i] != first);
}
/* Found first character,now look at the rest of v2 */
if (i <= max) {
int j = i + 1;
int end = j + targetCount - 1;
for (int k = targetOffset + 1; j < end && source[j] ==
target[k]; j++,k++);
if (j == end) {
/* Found whole string. */
return i - sourceOffset;
}
}
}
return -1;
}