C语言使用Linked List实现statk(附完整源码)

node结构体

struct node
{
   
    
    
    int info;
    struct node *link;
};

实现以下4个接口

struct node *top = NULL

猜你喜欢

转载自blog.csdn.net/it_xiangqiang/article/details/113967122