大家好,又见面了,我是你们的朋友全栈君。
#include<iostream>
using namespace std;
typedef struct
{
string name;
int year;
}elemtype;
typedef struct lnode
{
elemtype data;
lnode* next;
}*linklist;
elemtype haha[10];
int creatlist_r(linklist& l, int n)
{
linklist p,r;
l = new lnode;
l->next = NULL;
r = l;
for (int i = 0; i < n; i++)
{
p = new lnode;
cin >> haha[i].name>> haha[i].year;
p->next = NULL;
r->next = p;
r = p;
}
return 0;
}
void pr_(linklist l)
{
int n=0;
lnode* p = l->next;
while (p)
{
p = p->next; ++n;
}
for (int i = 0; i < n; i++)
{
cout << haha[i].name << " " << haha[i].year << endl;
}
}
int main()
{
linklist haha;
int n;
cout << "请输出要输入的个数:";
cin >> n;
creatlist_r(haha, n);
pr_(haha);
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/144661.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...