原创 考研數據結構-棧

考研數據結構-棧 1.結構 #include <stdio.h> #include <stdlib.h> #include <math.h> #define INITSIZE 20 #define INSERTMENT 10 t

原创 考研數據結構-線性表

考研數據結構-線性表 1.結構 #include <stdio.h> #include <conio.h> #include <stdlib.h> typedef int ElemType; typedef struct node

原创 考研數據結構-順序表

考研數據結構-順序表 一、靜態順序表 1.結構 #include<stdio.h> #include<stdlib.h> #define MaxSize = 100 typedef struct{ int *elem; //