教甄◆資訊科技概論專業(電腦科)題庫下載題庫

上一題
20. 下列程式碼片段何者執行雙向鏈結串列的節點刪除(this 指向目前節點,pre 及 next 分別指向 this 之前、後節點)?
(A) this->next->pre = this->next; this->pre->next = this->pre; free(this);
(B) this->pre->next = this->pre; this->next->pre = this->next; free(this) ;
(C) this->pre->pre = this->next; this->next->next = this->pre; free(this);
(D) this->pre->next = this->next; this->next->pre = this->pre; free(this);


答案:登入後觀看
難度: 適中

10
 【站僕】摩檸Morning:有沒有達人來解釋一下?
倒數 3天 ,已有 1 則答案
舜子111花蓮光復台中中港 大四上 (2021/04/05):

Pre.    This.   Next

2個讚
檢舉


20. 下列程式碼片段何者執行雙向鏈結串列的節點刪除(this 指向目前節點,p..-阿摩線上測驗