【单选题】What do you think of a man who neglects his wife?
【简答题】简述以下算法的功能(其中栈和队列的元素类型均为int): void proc_1(Stack S) { int i,n,A[255]; n=0; while(!EmptyStack(S)) { n++; Pop(&S,&A[n]); } for(i=1;i<=n;i++) Push(&S,A[i]); }
【简答题】简述以下算法的功能(其中栈和队列的元素类型均为int): void proc_3(Queue *Q) { Stack S; int d; InitStack(&S); while(!EmptyQueue(*Q)) { DeleteQueue(Q,&d); Push(&S,d); } while(!EmptyStack(S)) { Pop(&S,&d); EnterQueue(Q ,d) } }
【简答题】简述以下算法的功能(其中栈和队列的元素类型均为int): void proc_2(Stack S,int e) { Stack T; int d; InitStack(&T); while(!EmptyStack(S)) { Pop(&S,&d); if(d!=e) Push(&T,d); } while(!EmptyStack(T)) { Pop(&T,&d); Push(&S,d); } }
【单选题】刚体平动是其上各点轨迹 ,速度 ,加速度 ;而瞬时平动时其上各点的轨迹 , 速度 ,加速度 。
【单选题】刚体平动是其上各点速度 ,加速度 ;而瞬时平动时其上各点 速度 ,加速度 。