数据结构——链式表中基本操做的实现

/* 链式表中基本操做的实现 2018.04.12 */ #include<iostream> #include<string.h> #include<stdlib.h> #include<algorithm> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; t
相关文章
相关标签/搜索