题目内容

在纵向电光强度调制器里,光路中加入1/4波片的作用是( )。

A. 减小半波电压
B. 获得线性调制
C. 消除自然双折射引起的相位延迟
D. 减小光功率损耗

查看答案
更多问题

链队列入队算法链队列节点定义typedef struct SQnode{ QueueElemtype queuedata; struct SQnode *next;} SQueue,*PQueue;链队列结构定义typedef struct{ PQueue front,near;} Linkqueue,*PLinkQueue;int Insert_SQueue ( PLinkQueue Q, QueueElemtype x){ PQueue p; p = ( SQueue )malloc( sizeof( SQueue )); if(!p) { printf(“内存溢出”); return(0); } p->queuedata =x; /* 入队 */ ______ ; /* 尾节点 */ ______ ; /* 接链 */ ______ ; /* 移尾 */ return (1);}

简单选择排序算法(递增)void selectSort( int R[], int n ){ int i, j, k, temp ; for( i=1; i

面向对象的程序设计简称?( )

A. OOA
B. OOD
C. OOP
D. OOT

软件工程就是指导人们生产出优秀软件的一种科学方法。( )

答案查题题库