Với cấu trúc dữ liệu như sau: typedef struct DNode { i nt Key; DNode * NextNode; DNode * PreNode;

Câu hỏi :

Với cấu trúc dữ liệu như sau:
typedef struct DNode
{
int Key;
DNode * NextNode;
DNode * PreNode;
} DOneNode;
typedef DOneNode * DPointerType;
typedef struct DLLPairNode
{ DPointerType DLLFirst;
DPointerType DLLLast;
} DLLPType;
Hàm duyệt qua các nút trong danh sách liên kết đôi quản lý bởi hai địa chỉ nút đầu tiên và nút cuối cùng thông qua DList để xem nội dung thành phần dữ liệu của mỗi nút
void DLLTravelling (DLLPType DList)
{
DPointerType CurrNode = DList.DLLFirst;
while (CurrNode != NULL) { cout <<
CurrNode->Key; …………………………………
}
return;
}
Chọn câu chính xác điền vào chỗ trống để mô tả việc di chuyển từ nút này sang nút khác

A. CurrNode = CurrNode ->NextNode ;

B. CurrNode = CurrNode ->Key ;

C. CurrNode ->NextNode = CurrNode;

D. CurrNode ->Key = CurrNode;

* Đáp án

* Hướng dẫn giải

Chọn đáp án A

Copyright © 2021 HOCTAP247