C++ 單鏈表基本操做

一:目的 用C++實現單鏈表的基本操做; 一:實現 1. 首先定義單鏈表的結構和類,書寫在LinkList.h中node # include <iostream> # include <string> using namespace std; //定義節點的value struct Info { string name; //姓名 int id; //學號 Info(string
相關文章
相關標籤/搜索