C++线性表的建立

今天学了数据结构线性表,但不是很明白怎么回事,最后忙了半天才弄好了一个。C++线性表的建立示例:#include #include using namespace std;struct student{ long stunum;//学号 string name;//姓名 float score;//分数};typedef student ElemType

你可能感兴趣的:(数据结构学习)