struct node
{
……
} ;
struct node *p1, *p2 ;typedef struct node
{
……
}Node;typedef Node* pNode;
typedef struct node
{
……}*pNode;
C++ 结构体指针的定义
最新推荐文章于 2025-06-12 09:31:00 发布
struct node
{
……
} ;
struct node *p1, *p2 ;
typedef struct node
{
……
}Node;
typedef Node* pNode;
typedef struct node
{
……
}*pNode;