您不允許使用indexOf()
,或String類的matches()等任何內置函數。如何查找沒有使用char數組的字符串方法的子字符串?
使用給定的char數組在字符串webapple中查找字符串蘋果?
String webapple ="webapple";
String apple="apple";
char[] webappleArray=webapple.toCharArray();
char[] appleArray = apple.toCharArray();
寫一個函數
public boolean isPresent(char[] apple ,char[] webapple){
//your code here
}
_You_被問的面試問題。 –
刪除_interview question_的方法。問題依然存在。我們不是來做你的功課。嘗試一些東西。如果有問題,你回來,給我們所有的相關信息,然後我們可以幫助你。 –
@JasonC - 它不是 – libik