搜索结果
找到约 2 项符合
InitQueue 的查询结果
单片机开发 在c51上实现的队列,包括InitQueue
在c51上实现的队列,包括InitQueue,EnQueue,DelQueue,查询队列等等,用于在键盘输入显示上,队列很有效!
源码 数据结构实验
#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;
int top;
}SqStack;// ...