C++ Node 结构体---链表

链表:

struct Node
{
   int data;
   struct Node* next;
   //Node* next;亦可   
};

 

posted on 2023-11-17 17:18  廿陆  阅读(32)  评论(0)    收藏  举报

导航