堆栈的链式存储结构

源代码: ​#include<iostream> #include<malloc.h> using namespace std; typedef int elemtype; typedef struct node { elemtype data; struct node *next; }node,*linklist; //链接堆栈初始化 void init(linklist &
相关文章
相关标签/搜索