leetcode刷題-c語言如何在函數中返回字符數組

題目: 編寫一個函數來查找字符串數組中的最長公共前綴。 如果不存在公共前綴,返回空字符串 「」。 代碼: char* longestCommonPrefix(char** strs, int strsSize) { int n=strlen(strs[0]); static char a[n]; int i; int j; for(
相關文章
相關標籤/搜索