[填空題] 下面函數(shù)將指針p2所指向的線性鏈表串接到p1所指向的鏈表的末端。假定p1所指向的鏈表非空。請?zhí)羁铡? #define NULL 0 struct
2021-07-20
[填空題] 下面函數(shù)將指針p2所指向的線性鏈表串接到p1所指向的鏈表的末端。假定p1所指向的鏈表非空。請?zhí)羁铡?/p>
#define NULL 0
struct link
float a;
struct link *next;
;
concatenate (p1,p2)
struct list *p1,*p2;
if(p1->next==NULL)
p1->next=p2;
else
concatenate(______,p2);
正確答案:p1->next
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。