首页 > 其他 > 详细

建立单链表的方法

时间:2014-07-08 09:05:46      阅读:345      评论:0      收藏:0      [点我收藏+]
#include<iostream>

using namespace std;

struct node{
	int d;
	struct node *next;
};//定义结点

node *build1()//头插法构造单链表
{
node *p;//指向新建结点
node *head;//头指针

head=NULL;
p=head;
int x;

cin>>x;
 while(x!=-1)
 {
	 p=new node;
	 p->d=x;
	 p->next=head;
	 head=p;
	 cin>>x;
 }

 return head;
	 
}

node *build2()//尾插法构造单链表
{ 
	node *head;//头指针
	node *p,*s;//p指向当前结点,s指向尾结点
    
	head=NULL;
	p=head;
	s=head;
    int x;
	cin>>x;
	while(x!=-1)
	{
		p=new node;
		p->d=x;
		if(!head)head=p;
		else 
		s->next=p;
		s=p;
		cin>>x;
	}
	if(s)s->next=NULL;

	return head;
}
	






int main()
{
	node *p;
	p=build2();

	while(p!=NULL)
	{
		cout<<(p->d);
		p=p->next;
	}

	return 0;
}


本文出自 “7883538” 博客,请务必保留此出处http://7893538.blog.51cto.com/7883538/1435486

建立单链表的方法,布布扣,bubuko.com

建立单链表的方法

原文:http://7893538.blog.51cto.com/7883538/1435486

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!