| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 420 人关注过本帖
标题:写的链栈得不到结果
取消只看楼主 加入收藏
feiying0323
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2007-11-27
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
写的链栈得不到结果
源码如下:编译没有错误,但是就是得不到结果!望各位大侠帮帮忙!


#include<iostream>

using namespace std;

typedef struct node      //节点定义
{
    int data;
    struct node *next;
}snode;

class stack    //栈的类定义
{
private:
    snode *top;    
    int length;
public:
    stack create_stack(stack *st);

    void push(stack *st,int x);

    void pop(stack *st);

    void print(stack *st);
};
//几个函数的实现
stack stack::create_stack(stack *st)
{
    st->top=NULL;
    st->length=0;
    return(*st);
}

void stack::push(stack *st,int x)
{
    node *s;
    s=(snode *)malloc(sizeof(snode));
    s->data=x;
    s->next=st->top;

    st->top=s;
    st->length++;
    return;
}
void stack::pop(stack *st)
{
    node *p,*s;
    p=(node *)malloc(sizeof(node));
    if(st->top==NULL)
        exit(0);
    else
    {
        p=st->top;
        st->top=st->top->next;
        free(p);
        st->length--;
    }
    return;
}

void stack::print(stack *st)
{
    node *s;
    s=(node *)malloc(sizeof(node));
    while(st->top!=NULL)
    {
        s=st->top;
        cout<<s->data<<endl;
        s=s->next;
    }
    return;
}
    
void main()
 {
    stack *st;
    st->create_stack(st);
    st->push(st,2);
    st->push(st,1);
    st->print(st);
    return;    
 }
搜索更多相关主题的帖子: 链栈 
2009-08-25 18:11
feiying0323
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2007-11-27
收藏
得分:0 
首先谢谢xufen340的回复!

1.指针没有指向就附值。这点确实是疏忽了,已改正,呵呵~~~~

2.->next=st->top; //错误,st->top总是指向盏顶,你新建的节点得next指针去指向盏顶明显不对,
插入明显应该盏顶的next指针指向s,就是s->next=NULL;st->top->next=s;top=s;
//我觉得咱们的思路有点不同,st->top总是指向栈顶,这没错,但既然是入栈,自然是新建的节点的next指针去指向原来的栈顶,入栈后新的元素作为栈顶
即st->top=s;

3.p=(node *)malloc(sizeof(node)); 错误,出盏时还分配什么,肯定错误。确实不用了,呵呵
st->top=st->top->next; //错误st->top已经指到顶了,上面就没有了,st->top->next怎么来的,都乱指了。
正因为st->top已经指到顶,它才有next;指向的是栈顶元素的下一个,即从栈顶起第二个元素;

[ 本帖最后由 feiying0323 于 2009-8-25 22:58 编辑 ]
2009-08-25 22:49
快速回复:写的链栈得不到结果
数据加载中...
 
   



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

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