搜索:InitStack
找到约 2 项符合「InitStack」的查询结果
结果 2
https://www.eeworm.com/dl/534/460186.html
其他
用C实现栈的InitStack
用C实现栈的InitStack, empty, full, push, pop, clear, getpop。的功能。
https://www.eeworm.com/dl/517414.html
源码
数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
i ...