node * next和node * next之间有区别吗?

时间:2016-06-30 12:11:23

标签: c data-structures

在对链表进行编码时,我遇到了这个令人困惑的

概念
struct Node *next;
struct Node* next;

如果内存管理存在差异,或者两者之间有任何其他方式,请以图解方式解释它!

1 个答案:

答案 0 :(得分:1)

这两个声明是等价的。两者都声明next属于struct Node *类型。

相关问题