阅读下述代码和输出内容,空白处需要填入的代码是(D)。
A: a=>a.IndexOf("o")=1;
B: a=>a.IndexOf("o")>1;
C: a=>a.IndexOf("o")==2;
D: a=>a.IndexOf("o")==1;
A: a=>a.IndexOf("o")=1;
B: a=>a.IndexOf("o")>1;
C: a=>a.IndexOf("o")==2;
D: a=>a.IndexOf("o")==1;
举一反三
- 使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。 A: 字符串"helloworld"中不包含G字符,indexOf返回0 B: 字符串"helloworld"中不包含G字符,indexOf返回null C: 字符串"helloworld"中不包含G字符,indexOf返回-1 D: 字符串"helloworld"中不包含G字符,indexOf返回1
- 使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。 A: A字符串"helloworld"中不包含G字符,indexOf返回0 B: B字符串"helloworld"中不包含G字符,indexOf返回null C: C字符串"helloworld"中不包含G字符,indexOf返回-1 D: D字符串"helloworld"中不包含G字符,indexOf返回1
- 下面代码段的时间复杂度不正确的是() A: O(n1/2) B: O(n*n) C: O(log2n) D: O(1)
- 分析下列代码,这段代码的算法时间复杂度为( )。 i = 1; while( sum < n ){ i = i * 2; sum = sum + i; } A: O(nlogn) B: O(n) C: O(logn) D: o(1)
- 下面代码段的时间复杂度正确的是() A: O(1) B: O(n*n) C: O(n) D: O(log2n)