编辑代码

#include <iostream>
using namespace std;

struct List

int main() {
    //使用结构体实现动态链表
    //写一个函数建立一个具有三个节点的动态链表
	return 0;
}