-->
当前位置:首页 > 题库

题库 第6453页

  • 最新
  • 浏览
  • 评论

关于C语言指针的运算:指针只有加减操作,没有乘除操作。指针可以加常数、减常数;两个指针可以相减,其结果是两个地址值之差; 两个指

Luz5年前 (2021-05-10)2525
关于C语言指针的运算:指针只有加减操作,没有乘除操作。指针可以加常数、减常数;两个指针可以相减,其结果是两个地址值之差; 两个指针不可以相加。 ~@[](2)答案:FALSE…

Let $$C$$ be an alphabet in which each character $$c$$ in $$C$$

Luz5年前 (2021-05-10)1348
Let $$C$$ be an alphabet in which each character $$c$$ in $$C$$ has frequency $$c.freq$$. If the size of $$C$$ is $$n$$…

二叉搜索树T的最大元素一定位于树根的右子树。

Luz5年前 (2021-05-10)744
二叉搜索树T的最大元素一定位于树根的右子树。 ~@[](2)答案:FALSE…

Different classes within a source file can belong to different p

Luz5年前 (2021-05-10)1468
Different classes within a source file can belong to different packages. ~@[](1)答案:FALSE…

In a singly linked list of $$N$$ nodes, the time complexities fo

Luz5年前 (2021-05-10)1071
In a singly linked list of $$N$$ nodes, the time complexities for query and insertion are $$O(1)$$ and $$O(N)$$, respect…

An array subscript may be an integer or an integer expression. I

Luz5年前 (2021-05-10)1580
An array subscript may be an integer or an integer expression. If a program uses an expression as a subscript, then the…

length of an array is the number of elements in the array.

Luz5年前 (2021-05-10)1327
length of an array is the number of elements in the array. ~@[](1)答案:TRUE…

并发性是指若干事件在同一个时刻发生。

Luz5年前 (2021-05-10)957
并发性是指若干事件在同一个时刻发生。 ~@[](2) 答案:FALSE…

A class declared final cannot be subclassed. Every method of a f

Luz5年前 (2021-05-10)1221
A class declared final cannot be subclassed. Every method of a final class is implicitly final. ~@[](1)答案:TRUE…

A method declared static cannot access non-static class members.

Luz5年前 (2021-05-10)1732
A method declared static cannot access non-static class members. A static method does not have `this` reference because…