线性表
卑微的自我
这个作者很懒,什么都没留下…
展开
-
数据结构(C/C++)——顺序串
#include<stdio.h>#include<stdlib.h>#include<string.h>#define MaxSize 255typedef struct { char ch[MaxSize]; int length;}String;void StrAssign(String& S,char a[]) { S.length=strlen(a); for (int i = 0; i < S.length; i++) {原创 2020-07-04 20:06:27 · 448 阅读 · 0 评论 -
数据结构(C/C++)——顺序循环队列
#include<stdio.h>#define MaxSize 20typedef int ElemType;typedef struct{ ElemType data[MaxSize]; int front, rear,size;}SqQueue;bool InitQueue(SqQueue &S) { S.size = 0; S.front = 0; S.rear = 0; return true;}bool EnQueue(SqQueue &a原创 2020-07-02 18:19:24 · 256 阅读 · 0 评论 -
数据结构(C/C++)--单链线性表
#include<stdio.h>#include<stdlib.h>#define MaxSize 100typedef int ElemType;typedef struct LNode { ElemType data; struct LNode * next;}LNode ,*LinkeList ;bool InitLIst(LinkeList& L) { L = (LNode*)malloc(sizeof(LNode)); if (L =原创 2020-06-30 22:28:27 · 217 阅读 · 0 评论