兴奋吐司

文章
4
资源
0
加入时间
2年10月24天

单链表输入输出

废话不说单链表 头结点没数据 能输入输出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 &...