摘要:
#include<iostream> using namespace std; //单链表 class point{//结点类 public: int data; point *next; }; class line{//单链表 public: int length; point *head; li 阅读全文
posted @ 2021-01-21 20:52
大耿2844
阅读(45)
评论(0)
推荐(0)
摘要:
#include<iostream> using namespace std; // 建立顺序存储的线性表 const int maxsize =100;//定义maxsize=100 template<class T> class olist{//olist=order list(顺序表) pub 阅读全文
posted @ 2021-01-21 09:04
大耿2844
阅读(32)
评论(0)
推荐(0)

浙公网安备 33010602011771号