LeetCode -- 求字符串數組中的最長公共前綴

題目描述: Write a function to find the longest common prefix string amongst an array of strings. 就是給定1個字符串數組,找出公共最長前綴。 思路很直接,使用1個索引來存最長公共前綴的長度就能夠了。 注意, 若是使用1個字符串變量來存前綴的話,是不能AC的,由於題目不容許使用額外的空間。 public stri
相關文章
相關標籤/搜索