A.p=head->next;head->next=head->next->next;delete p;
B.head->next=head->next->next;p=head->next;delete p;
C.p=head;head=head->next;delete p;
D.head=head->next;p=head;delete p;
您可能感興趣的試卷
你可能感興趣的試題
A.q=p;delete p;
B.p=q;delete q;
C.q->next=p->next;delete p;
D.p->next=q->next;delete q;
A.s->next=head;head=s;
B.s->next=head->next;head->next=s;
C.head=s;s->next=head;
D.head->next=s;s->next=head->next;
A.q=s->next;s=p->next;
B.q->next=s;s->next=p;
C.s=p->next;q=s->next;
D.s->next=p;q->next=s;
A.p->next=s;s->next=p->next;
B.s->next=p-next;p->next=s;
C.p=s->next;s=p->next;
D.s=p->next;p=s->next;
A.p->num
B.(p++).num
C.(p++)->num
D.(*p).num
最新試題
運算符()用于申請動態(tài)存儲空間,它的操作數(shù)為某種數(shù)據(jù)類型且可以帶有初值表達式或元素個數(shù)。
()是指在程序的同一范圍內(nèi)聲明幾個功能類似的同名函數(shù)。
static_cast的功能是將一種數(shù)據(jù)類型轉(zhuǎn)換成另一種數(shù)據(jù)類型,其使用格式為()。
重載函數(shù)的形參必須不同,即或者()或者參數(shù)類型不同。
兩個以上的函數(shù),具有相同的函數(shù)名,但是形參的個數(shù)或者類型不同,編譯器根據(jù)實參和形參的類型及個數(shù)的最佳匹配,自動確定調(diào)用哪一個函數(shù),這就是()。
標(biāo)識符的()是指在程序的哪個區(qū)域里可以使用。
標(biāo)識符的()是指一個標(biāo)識符在程序中的有效范圍。
string對象可以使用cin和()進行輸入和輸出。
()是面向?qū)ο蟪绦蛟O(shè)計方法中的程序主體。
const_cast的使用格式為()。