-->
当前位置:首页 > 题库

单选题:```

Luz5年前 (2021-05-10)题库956
```
struct Node{
int data; //数据域
Node*next; //指针域
};
```
带头结点的单链表的结点结构Node声明如上,头指针为head,则第一个数据结点的数据域值是( )。

@[D](2)

A. head->data
B. head.data
C. head.next->data
D. head->next->data



A.head->data
B.head.data
C.head.next->data
D.head->next->data


答案:D