网站首页 站内搜索

搜索结果

查询Tags标签: Linkedstack,共有 2条记录
  • 链式栈的实现(头文件及源程序)

    链式栈的实现(头文件及源程序) Linkedstack.h #ifndef __LINKEDSTACK_H__ #define __LINKEDSTACK_H__//元素类型定义 typedef int ElemType_stack;//结点结构体类型定义 typedef struct Node_stack {ElemType_stack data;struct Node_stack *next;struct Node_stack *fr…

    2021/7/22 14:09:35 人评论 次浏览
  • 链式栈的实现(头文件及源程序)

    链式栈的实现(头文件及源程序) Linkedstack.h #ifndef __LINKEDSTACK_H__ #define __LINKEDSTACK_H__//元素类型定义 typedef int ElemType_stack;//结点结构体类型定义 typedef struct Node_stack {ElemType_stack data;struct Node_stack *next;struct Node_stack *fr…

    2021/7/22 14:09:35 人评论 次浏览
扫一扫关注最新编程教程