有关数组中转换成链表

有关数组中转换成链表,第1张

看创建函数

link Creatlist() //从数组中取数据创建一个链表

{

int i

int a[5]={1,2,4,3,5}

link p,H,r

H=(link)malloc(sizeof(linknode))

///////////////////////////////////////////再加上r=H就行了

for(i=0i<5i++){

p=(link)malloc(sizeof(linknode))

p->data=a[i]

r->next=p

r=p

}

r->next=NULL

return (H)

}

#include<iostream.h>

struct node

{

int data

node *next

}

void creat(node *head,int)

void remove(node *head,int)

void print(node *head)

void main()

{

int count //数字总数

int num//要删除的数字

node *head=new node

do

{

cout<<"依次输入个数n(1<=n<=200000),n个元素(用空格分隔),待删除的元素。"<<endl

cin>>count

}

while(count>200000||count<1)

creat(head,count)

cin>>num

remove(head,num)

cout<<"结果如下:"<<endl

print(head)

}

void creat(node *head,int i)

{

node *temp

head->next=NULL

while(i--)

{

temp=new node

cin>>temp->data

temp->next=head->next

head->next=temp

head=temp

}

}

void remove(node *head,int num)

{

node *p=head

head=head->next

while(head!=NULL)

{

if(head->data==num)

{

p->next=head->next

head=p->next

}

else

{

p=p->next

head=head->next

}

}

}

void print(node *head)

{

head=head->next

while(head!=NULL)

{

cout<<head->data<<' '

head=head->next

}

cout<<endl

}

运行结果如下:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7873056.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存