我正在学习大哦符号。对于下面的代码,我有一个计算字数的程序,跳过分隔符。对于此算法,for 循环将针对句子的长度,然后包含迭代到字符串的内容。所以根据我的说法,这个算法的大符号是 O(n^3)。这是正确的还是我错过了一些关于大哦符号的东西?
public class wordCount {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String sentence = "How are you,zak;far: mon. day ?:";
int count = 1;
ArrayList<Character> delim = new ArrayList<Character>();
delim.add(' ');
delim.add(',');
delim.add('.');
delim.add(':');
delim.add(';');
delim.add('"');
delim.add('\'');
for (int i = 0; i != sentence.length() - 1; i++) {
if (delim.contains(sentence.charAt(i))) {
if (!delim.contains(sentence.charAt(i + 1))) {
count++;
}
}
}
System.out.println("The count is: " + count);
}
}