单项选择题
算法执行过程中,所需要的存储空间称为算法的
A.时间复杂度
B.计算工作量
C.空间复杂度
D.工作空间
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
设有以下语句 typedef struct s int g;char h;T 则下面叙述中正确的是
A.可用S定义结构体变量
B.可以用T定义结构体变量
C.S是struct类型的变量
D.T是structS类型的变量
点击查看答案&解析
单项选择题
有以下程序 void swapl(int c[]) int t; t=c[0];c[0]=c[1];c[1]=t; void swap2(int c0,int c1) int t; t=c0;c0=c1;c1=t; main() int a[2]=3,5,b[2]=3,5; swapl(
A.;swap2(b[0],b[1]);
点击查看答案&解析
相关试题
有以下程序 #include <stringh> main...
有以下程序 #include <stdio.h> mai...
有以下程序 int f(int b[][4]) ...
下面程序的功能是输出以下形式的金字塔图案...
有以下程序 struct STU char name[1...