Find consecutive repeated string# JobHunting - 待字闺中
a*y
1 楼
Write a program which returns true if the given string contains the
consecutive repeated substring .Ex-adabcabcd
here abc is consecutive repeated substring.
这个我想要是用map来存character 的index的话,这个不好弄,因为你遇到duplicate
的时候,你不知道是应该update这个index还是不update这个index,因为后面有可能是
从第一个字母开始也有可能从第一次重复的时候开始
另外可以expand around center来进行,但是这就变成0(n^3)了,有啥好方法没有?
consecutive repeated substring .Ex-adabcabcd
here abc is consecutive repeated substring.
这个我想要是用map来存character 的index的话,这个不好弄,因为你遇到duplicate
的时候,你不知道是应该update这个index还是不update这个index,因为后面有可能是
从第一个字母开始也有可能从第一次重复的时候开始
另外可以expand around center来进行,但是这就变成0(n^3)了,有啥好方法没有?