-->
当前位置:首页 > Luz 第6254页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:以下程序的结果是

Luz5年前 (2021-05-10)732
以下程序的结果是 @[C](2)```#include int main() { int k=2,m=4,n=6;  int *pk=&k,*pm=&m,*p;  *(p=&n)=*pk*(*pm);  printf(“%d”,…

单选题:设有如下程序段

Luz5年前 (2021-05-10)1039
设有如下程序段```char s[20]="Beijing",*p; p=s;```则执行p=s;语句后,以下叙述正确的是 @[A](2)A. 可以用`*p`表示s[0]B. s数组中元素个数和p所指字符串长度相等C. s和p都是指针…

单选题:若有说明:`int n=2,*p=&n,*q=p;`则以下非法的赋值语句是

Luz5年前 (2021-05-10)991
若有说明:`int n=2,*p=&n,*q=p;`则以下非法的赋值语句是 @[D](2)A. ` p=q;`B. `*p=*q;`C. `n=*q;`D. `p=n;`A.` p=q;`B.`*p=*q;`C.`n=*q;`D.`p=…

单选题:若有定义:`int x,*pb;`则在以下正确的赋值表达式是

Luz5年前 (2021-05-10)1047
若有定义:`int x,*pb;`则在以下正确的赋值表达式是 @[A](2)A. `pb = &x`B. `pb = x`C. `*pb = &x`D. `*pb = *x`A.`pb = &x`B.`pb = x`C.`*pb = &…

单选题:![list.jpg](~/e8409833-8ff2-4a95-9c5f-23e90ed6ae4f.jpg)

Luz5年前 (2021-05-10)595
![list.jpg](~/e8409833-8ff2-4a95-9c5f-23e90ed6ae4f.jpg)Which one of the following is the data structure that is best rep…

单选题:Given the popping sequence of a stack as {1, 2, 3, 4, 5}. Among

Luz5年前 (2021-05-10)1259
Given the popping sequence of a stack as {1, 2, 3, 4, 5}. Among the following, the impossible pushing sequence is: @[C]…

单选题:Given the popping sequence of a stack as {a, b, c, d, e}. Among

Luz5年前 (2021-05-10)1032
Given the popping sequence of a stack as {a, b, c, d, e}. Among the following, the impossible pushing sequence is: @[B]…

单选题:A full tree of degree 4 is a tree in which every node other than

Luz5年前 (2021-05-10)966
A full tree of degree 4 is a tree in which every node other than the leaves has 4 children. How many leaves does a ful…

单选题:A full tree of degree 3 is a tree in which every node other than

Luz5年前 (2021-05-10)1219
A full tree of degree 3 is a tree in which every node other than the leaves has 3 children. How many leaves does a full…

单选题:A full tree of degree 3 is a tree in which every node other than

Luz5年前 (2021-05-10)924
A full tree of degree 3 is a tree in which every node other than the leaves has 3 children. How many leaves does a full…