摘要: #include<iostream> using namespace std; //循环单链表 class point{//结点类 public: int data; point *next; }; class line{//单链表 public: int length; point *head; 阅读全文
posted @ 2021-01-22 15:07 大耿2844 阅读(87) 评论(0) 推荐(0)