尾插法建立单链表的算法
生活随笔
收集整理的这篇文章主要介绍了
尾插法建立单链表的算法
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
尾插法建立单链表的算法
实现代码: #include <iostream> #include <stdlib.h> using namespace std; #define maxSize 100 typedef struct LNode{int data;struct LNode *next; }LNode; void createListR(LNode *&C,int a[],int n){LNode *s,*r;int i;C=(LNode*)malloc(sizeof(LNode));C->next=NULL;r=C;for(i=1;i<=n;++i){s=(LNode *)malloc(sizeof(LNode));s->data=a[i];r->next=s;r=r->next;}r->next=NULL; } int main(int argc, char *argv[]) {int a[10],e;LNode *C;cout<<"输入九个数:";for(int i=1;i<=9;i++){cin>>a[i];}createListR(C,a,9);cout<<"输入单链表:";for(int i=1;i<=9;++i){C=C->next;cout<<C->data<<" ";} return 0; }输出结果: 输入九个数:1 2 3 4 5 6 7 8 9 输入单链表:1 2 3 4 5 6 7 8 9 请按任意键继续. . .
总结
以上是生活随笔为你收集整理的尾插法建立单链表的算法的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: dede采集教程
- 下一篇: Mac开发之重写NSSlider(比酷狗