单链表输入输出 废话不说单链表 头结点没数据 能输入输出char类型的数据代码:#include<iostream>using namespace std;struct Node { int data; char name[80]; Node* next;};Node* head, * p, * r;int x;char str[80];int main(){ cin &... Other 2023-08-24 40 点赞 0 评论 60 浏览