C++ 单链表基本操做

一:目的 用C++实现单链表的基本操做; 一:实现 1. 首先定义单链表的结构和类,书写在LinkList.h中node # include <iostream> # include <string> using namespace std; //定义节点的value struct Info { string name; //姓名 int id; //学号 Info(string
相关文章
相关标签/搜索