问一个面试问题# JobHunting - 待字闺中T*82012-03-17 07:031 楼Write a function to find the longest common prefix string amongst an arrayof strings记得以前有人提供一个好像不错的算法,但是好像忘记了。。。
g*y2012-03-17 07:033 楼题目条件不太对吧,common prefix, 这个太trivial了。我觉得你说的可能是longest common substring among an array,http://en.wikipedia.org/wiki/Longest_common_substring_problem【在 T*****8 的大作中提到】: Write a function to find the longest common prefix string amongst an array: of strings: 记得以前有人提供一个好像不错的算法,但是好像忘记了。。。
C*U2012-03-17 07:036 楼mlogn可以做到把两个两个拿出来比较【在 c*******n 的大作中提到】: 问题就是那样。但是好像一般解法都要O(nm)的复杂度。m是String 长度。不知道有没: 有好一点点算法。