struct node * next和node * next之间的区别?

时间:2017-06-13 21:50:43

标签: c++ struct linked-list nodes

我看到了这段代码:

 struct node {
   int data;
   struct node* next;
 };

我也看到了这段代码:

struct node {
  int data;
  node* next;
};

两者之间有什么区别,优点/缺点?

0 个答案:

没有答案