摩擦系数小,有较高的精度及寿命的轴承是()。
A.滑动轴承
B.非金属轴承衬
C.滚动轴承
D.金属轴承衬
参考答案:C
近代化的军事与国防建设带来了交通和通讯的发展,据此结合下列材料提供的信息,列出相关内容。
(1)洋务运动中最大的军事工业为_____________;
(2)洋务运动中成立的三支海军为__________、___________、__________;
(3)1872年在上海成立的当时中国规模最大的民用企业为_____________;
(4)中国人自己设计和修建的第一条铁路为______________。
【说明】设单链表的结点类和链表类的定义如下,链表不带有表头结点。请填空: #include<iostream.h> #include<assert.h> template<class T>class List; template<class T>class ListNOdefriend (1) ; private:T data;ListNode<T> *link; public:ListNode():link(NULL)()ListNOde(const T& item,ListNOde<T>*next=NULL):data(item),link(next) ; template<class T>class List private:ListNode<T>*first;void createList(T A[],int n,int i,ListNOde<T>*&p);void printList(ListNOde<T>*p); public:List();~List();friend ostream& operator<<(ostream& ost,List<T>&L);friend istream& operator>>(istream& ist,List<T>&L); ; template<class T> istream& operator>>(istream& ist,List<T>&1)int i,n; ist>>n;T A[n];for(i=0;i<n;i++) (2) ;createList(A,n,0,first); template<class T> void List<T>::createList(TA[],int n,int i,ListNOde<T>*& p) //私有函数:递归调用建立单链表if(i==n)p=NULL;elsep=new ListNode<T>(A[i]);assert(p !=NULL);createList( (3) ); template<class T> ostream& operator<<(ostream& ost,List<T>& L) (4) ; template<class T> void List<T>::printList(ostream& ost,ListNode<T>*p)if(p!=NULL) ost<<p->data; (5) ;