下列关于栈的叙述正确的是( )。
- A.栈按"先进先出"组织数据
- B.栈按"先进后出"组织数据
- C.只能在栈底插入数据
- D.不能删除数据
热度🔥563
解析:打开微信小程序查看本题解析
有三个关系R、S和T如下:
则关系R和关系S得到关系T的操作是
下列数据结构中,能够按照“先进后出”原则存取数据的是( )。
有以下程序
#include
#include
struct A
{
int a;
char b[10];
double c;
};
void f(struct A t);
main()
{
struct A a={1001,"ZhangDa",1098.0};
f(a);
printf("%d,%s,%6.1f\n", a.a,a.b,a.c);
}
void f(struct A t)
{
t.a=1002;
strcpy(t.b,"ChangRong");
t.c=1202.0;
}
程序运行后的输出结果是
下列叙述中正确的是( )。
如果在一台主机的Windows环境下执行命令Ping www.pku.edu.cn得到下列信息
Pinging www.pku.edu.cn [162.105.131.113] with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Ping statistics for 162.105.131.113:
Packets: Sent=4, Received=0, Lost=4 (100% loss)
那么下列结论中无法确定的是()