LeetCode 14 最長公共字首

2021-10-03 02:38:56 字數 1131 閱讀 8869

編寫乙個函式來查詢字串陣列中的最長公共字首。

如果不存在公共字首,返回空字串 「」。

輸入: [「flower」,「flow」,「flight」]

輸出: 「fl」

輸入: [「dog」,「racecar」,「car」]

輸出: 「」

解釋: 輸入不存在公共字首。

class

solution

public

void

insert

(string word)

node=node.

get(char);}

node.

setend()

;}public tirenode searchpre

(string word)

else

}return node;

}public

boolean

search

(string word)

public

boolean

ispre

(string word)

}class

tirenode

public

boolean

containskey

(char ch)

public tirenode get

(char ch)

public

void

put(

char ch,tirenode node)

public

void

setend()

public

boolean

isend()

public

intgetsize()

}public string longestcommonprefix

(string[

] strs)

string nb="";

tirenode node=g.root;

for(

int i=

0;i.length()

;i++

)else

}return nb;

}}

LeetCode14最長公共字首

編寫乙個函式來查詢字串陣列中最長的公共字首字串。例如 輸出 ab 比較乙個字串陣列的最長公共字首,遍歷整個字串陣列,建立乙個字串用來儲存當前最長公共字串,逐個比較,不斷更新公共字串內容。情況比較多,考慮周全,不然可能會陣列溢位。公共字串的長度和當前比較字串的長度大小的比較,避免陣列越界,還有空字串的...

LeetCode 14 最長公共字首

編寫乙個函式來查詢字串陣列中最長的公共字首字串。用第乙個字串s,比較strs的每個字串的公共字首,並記錄字首有m位,之後輸出s的前m位字元即可。但是在輸出過程中,使用了如下的賦值方式 for int i 0 i m i ans i s i 在string型別中,內部的成員是private的,所以不能...

LeetCode14 最長公共字首

題目描述 編寫乙個函式來查詢字串陣列中的最長公共字首。如果不存在公共字首,返回空字串 示例 1 輸入 flower flow flight 輸出 fl 示例 2 輸入 dog racecar car 輸出 解釋 輸入不存在公共字首。說明 所有輸入只包含小寫字母a z。如下 class solutio...