开心玫瑰

文章
9
资源
1
加入时间
2年10月17天

尾插法建立单链表并输出

题目描述输入一个正整数序列,遇负数时停止,建立一个线性链表存储读入的数据,将各个元素按顺序输出。样例输入 Copy1 2 3 4 5 -1样例输出 Copy1 2 3 4 5#include <iostream>#include<stdio.h>#include<stdlib.h>using namespace std;typedef struct Lnode{ int data; struct Ln