鱼C论坛

 找回密码
 立即注册
查看: 3176|回复: 2

链表的输出问题。

[复制链接]
发表于 2015-10-18 14:57:15 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
运行没事,到输出时会出现,“出现一个问题,导致程序停止正常工作,如果有可用的解决方案,windows将关闭程序并通知你。“。的对话框。
#include<iostream>
#include<cmath>
#include<cstdlib>
#include<ctime>
using namespace std;
typedef struct node
{
        int data;
        struct node *next;
} node,*linklist;
linklist init_node()
{
        linklist l;
        l=new node;
        l->next=NULL;
        return l;
}
linklist create_node(linklist l)
{
        int n,i;
        linklist p;
        srand((unsigned)time(0));
        cout<<"please input element number:";cin>>n;
        for(i=0;i<n;i++)
        {
                p=new node;
                p->data=rand()%100+1;
                p->next=l->next;
                l->next=p;
        }
        return l;
}
linklist create_node2(linklist l)
{
        int n;
        linklist p,r;
        r=l;
        srand((unsigned)time(0));
        cout<<"please input element number:";cin>>n;
        for(int i=0;i<n;i++)
        {
                p=new node;
                p->data=rand()%100+1;
                r->next=p;
                r=p;
        }
        r->next=NULL;
        return l;
}
/*linklist insert_linklist(linklist l,int i,int e)
{
        linklist p,r;
        p=l;
        int j=1;
        while(p&&j<i)
        {
                p=p->next;
                j++;
        }
        if(!p&&j>i)
        {
                return 0;
        }
        r=new node;
        r->data=e;
        r->next=p->next;
        p->next=r;
        return l;
}
linklist delete_linklist(linklist l,int i)
{
        linklist p,q;
        int j=1;
        p=l;
        while(p&&j<i)
        {
                p=p->next;
                j++;
        }
        if(!p&&j>i)
        {
                cout<<"no delete element"<<endl;
        }
        q=p->next;
        p->next=q->next;
        delete q;
        return l;
}*/
void show(linklist l)
{
        linklist p,r;
        p=l->next;
        r=l;
        cout<<"please output element:";
        while(r->next!=NULL)
        {
                cout<<p->data<<"  ";
                p=p->next;
        }
}
int getmidnode(linklist l,int e)
{
        linklist search,mid;
        mid=search=l;
        while(search->next!=NULL)
        {
                if(search->next->next!=NULL)
                {
                        search=search->next->next;
                        mid=mid->next;
                }
                else
                {
                        search=search->next;
                }       
        }
        e=mid->data;
        return e;
}
int main()
{
        node *l;
        int i,x;
        l=init_node();
        create_node2(l);
        /*cout<<"please input insert where:";cin>>i;
        cout<<"please input insert element:";cin>>x;
        l=insert_linklist(l,i,x);
        cout<<"please input delete element where:";cin>>i;
        l=delete_linklist(l,i);*/
        show(l);
        cout<<getmidnode(l,x)<<endl;
        return 0;
}
程序如上。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2015-10-21 09:34:04 | 显示全部楼层
:smile
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-12-6 11:23:36 | 显示全部楼层
觉得有点长了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 20:31

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表