- 论坛徽章:
- 0
|
用C++写的一个程序:用来建一个自己定义长度的链表,并输出它,源程序如下:
- #include <iostream.h>;
- typedef struct list
- {int data;
- struct list *next;
- }sqllist;
- sqllist *temp;
- sqllist *head;
- void install(int n)
- {head=new sqllist;
- head->;next=NULL;
- for(int i=0;i<n;i++)
- {temp=new sqllist;
- cout<<"please input the data of the sqllist"<<endl;
- cin>;>;temp->;data;
- temp->;next=head;
- head=temp;
- };
- };
- void display(sqllist *head)
- {cout<<"The data of the sqllist is:";
- while(head->;next!=NULL)
- {
- cout<<head->;data<<",";
- head=head->;next;
- }
- };
- main()
- {extern void install(int n);
- extern void display(sqllist *head);
- install(4);
- display(head);
- }
复制代码 |
|