- 博客(2)
- 收藏
- 关注
原创 括号匹配——PTA~DS
#include<iostream> using namespace std; #define MaxSize 100 #define OK 1 #define ERROR 0 typedef int Status; typedef struct { char *base; char *top; }SqStrack; Status InitSq(SqStrack &...
2020-05-04 23:00:39
945
原创 带 头结点 的 链队列的基本操作——PTA~DS
#include <stdio.h> #include<malloc.h> #define OK 1 #define ERROR 0 typedef int Status; typedef int ElemType; typedef struct LNode { ElemType data; struct LNode * next; }LNode,*LinkLi...
2020-04-25 18:18:56
746
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人