文字列内の最初の重複文字を検出するためのコードを以下に記述しました。
public static int detectDuplicate(String source) {
boolean found = false;
int index = -1;
final long start = System.currentTimeMillis();
final int length = source.length();
for(int outerIndex = 0; outerIndex < length && !found; outerIndex++) {
boolean shiftPointer = false;
for(int innerIndex = outerIndex + 1; innerIndex < length && !shiftPointer; innerIndex++ ) {
if ( source.charAt(outerIndex) == source.charAt(innerIndex)) {
found = true;
index = outerIndex;
} else {
shiftPointer = true;
}
}
}
System.out.println("Time taken --> " + (System.currentTimeMillis() - start) + " ms. for string of length --> " + source.length());
return index;
}
次の 2 つの点で助けが必要です。
- このアルゴリズムの最悪の場合の複雑さは? - 私の理解は O(n) です。
- これを行うのが最善の方法ですか?誰かがより良い解決策を提供できますか (もしあれば)?
ありがとう、NN