| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 585 人关注过本帖
标题:关于数据结构的问题(2)
只看楼主 加入收藏
lufeng1720
Rank: 1
等 级:新手上路
帖 子:21
专家分:6
注 册:2009-10-30
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:5 
关于数据结构的问题(2)
#include <stdio.h>
#include <stdlib.h>
typedef struct stacknode
{int data;
    struct stacknode *next;
}stacknode,* linkstack;
linkstack top;
void push(linkstack top,int x)
{stacknode *p=new stacknode;
    p->data=x;
    p->next=top;
    top=p;
}
int pop(linkstack top)
{int x;
    stacknode *p=top;
    x=p->data;
    top=p->next;
    free (p);
    return x;
}
void showstack(linkstack top)
{stacknode *p=top;
    if(p==NULL)
    printf("it is kong");
    else
    {printf("it is:");
        while(p!=NULL)
        {printf("%6d",p->data);
            p=p->next;
        }
        printf("\n");
}}
main()
{linkstack top=NULL;
push(top,1);
push(top,2);
printf("%5d",pop(top));
请顺便看看这个吧!!!!!!!!!!!!!!也运行不了啊!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!为什么????????????????????????????????????
搜索更多相关主题的帖子: 数据结构 
2010-04-21 16:55
寒风中的细雨
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:66
帖 子:1710
专家分:8645
注 册:2009-9-15
收藏
得分:20 
#include <stdio.h>
#include <stdlib.h>

typedef struct stacknode
{
    int data;
    struct stacknode *next;
}stacknode,* linkstack;

//linkstack top;

void push(linkstack &top,int x)
{
    stacknode *p=new stacknode;
    p->data = x;
    p->next = top;
    top=p;
    printf("%d\n", top->data);
}

int pop(linkstack &top)
{
    int x;
    stacknode *p=top;
    x=p->data;
    top=p->next;
    //free (p);//
    delete p;
    return x;
}

void showstack(linkstack top)
{
    stacknode *p=top;
    if(p==NULL)
    printf("it is kong");
    else
    {
        printf("it is:");
        while(p)
        {
            printf("%6d",p->data);
            p=p->next;
        }
        printf("\n");
    }
}

int main()
{
    linkstack top=NULL;

    push(top,1);
    push(top,2);
    printf("%5d\n",pop(top));

    return 0;
}
2010-04-21 21:42
lufeng1720
Rank: 1
等 级:新手上路
帖 子:21
专家分:6
注 册:2009-10-30
收藏
得分:0 
不胜感激啊!!!!!!!!!!!!!!!!!!!!!!!
2010-04-21 23:07
lufeng1720
Rank: 1
等 级:新手上路
帖 子:21
专家分:6
注 册:2009-10-30
收藏
得分:0 
谢谢啊 !!!!!!!!高手啊!!!!以后多指教小弟啊!能不能加我qq啊?以后有不懂的可以问你啊!我的qq是495273822!!!!
2010-04-21 23:09
寒风中的细雨
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:66
帖 子:1710
专家分:8645
注 册:2009-9-15
收藏
得分:0 
差远啦  
  正在学呢还
2010-04-22 06:32
zwpyn
该用户已被删除
收藏
得分:0 
提示: 作者被禁止或删除 内容自动屏蔽
2010-04-28 09:33
快速回复:关于数据结构的问题(2)
数据加载中...
 
   



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

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