| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 542 人关注过本帖
标题:[求助]不会改了,小生愚蠢?
只看楼主 加入收藏
autumnluo
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2005-12-7
收藏
 问题点数:0 回复次数:1 
[求助]不会改了,小生愚蠢?

#include<iostream.h>
struct node
{
int date;
node*next;
};
node*deleteData(int n,node*head);
void*outpputList(node*head);
int main()
{
int n;
int num;

node *listHead=NULL;
cout<<"plaese enter the number of nodes:";
cin>>n;
cout<<"pleaase enter"<<n<<"intebers:";
cin>>num;
cout<<"\nplease enter the number tobe deleted:";
cin>>n;
listHead=deleteData(num,listHead);
outputList(listHead);
return 0;
}
node*deleteData(int n,node *head)
{node*curNode=head;
node*preNode=NULL;

cin>>n;
for(int i=1;i<=n;i++)
{preNode=curNode;
curNode=curNode->next;
}preNode->next=curNode->next;
delete curNode;
cout<<"delete"<<n<<"from the list."<<endl;
return head;

//末找到n
cout<<"can't find"<<n<<"in the list."<<endl;
return head;
}
void *outputList(node*head)
{
cout<<"list:";
node *curNode=head;
while(curNode)
{
cout<<curNode->data;
if(curNode->next)
cout<<"->";
curNode=curNode->next;
}
cout<<endl;
return;}

搜索更多相关主题的帖子: 小生 
2006-04-18 10:47
pthouge
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2006-3-10
收藏
得分:0 

要改什么呀


2006-04-18 12:53
快速回复:[求助]不会改了,小生愚蠢?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017827 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved