填空题

算法的基本特征是可行性、确定性、【 】和拥有足够的情报。

【参考答案】

有穷性
<上一题 目录 下一题>
热门 试题

填空题
以下程序的运行结果是【 】#include <string.h>typedef struct student{char name[10];long sno;float score; }STU;main( ){ STU a={“zhangsan”,2001,95},b={“Shangxian”,2002,90},c={“Anhua”,2003,95},d,*p=&d; d=a;if(strcmp(a.name,b.name)>0) d=b;if(strcmp(c.name,d.name)>0) d=c;printf(“%ld%s n”,d.sno,p->name); }
填空题
已有定义如下:struct node{ int data;struct node *next;} *p;以下语句调用malloc函数,使指针p指向一个具有struct node类型的动态存储空间。请填空。 p = (struct node *)malloc(【 】);
相关试题
  • 软件工程研究的内容主要包括:【 】技术和...
  • 类是一个支持集成的抽象数据类型,而对象是...
  • 关系数据库的关系演算语言是以【 】为基础...