| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 484 人关注过本帖
标题:数据结构在进栈和出栈的时候有错!!帮忙改一下
取消只看楼主 加入收藏
l3315534
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2009-12-28
结帖率:50%
收藏
已结贴  问题点数:15 回复次数:0 
数据结构在进栈和出栈的时候有错!!帮忙改一下
// Stack.cpp : Defines the entry point for the console application.
//
//头文件包含区
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>

//数据类型定义
struct Node{
    int data;
    Node* next;
};

struct LStack{
    Node* top;
    int length;
};

//操作函数定义
void InitLstack(LStack &ls)
{
    ls.top= 0;
    ls.length = 0;
}

//入栈操作
void PushLstack(LStack &ls, int e)
{   
    Node s;
    s.data = e;
    s.next = 0;

    s.next = ls.top;
    ls.top = &s;
    ls.length++;
}

void PopLstack(LStack &ls, int &e)
{
    if(ls.length<=0)
        return;
    e = ls.top->data;
    Node * p;
    p = ls.top;
    ls.top = ls.top->next;
    ls.length--;
    return;
}

void prinfLstack1(LStack lss)
{
    Node* p = lss.top;
    while(p)
    {
        printf("%d ",p->data);
        p = p->next;
    }
}

void prinfLstack(LStack lss)
{
    int e;
    while(lss.length)
    {
        PopLstack(lss,e);
        printf("%d  ",e);
    }
}

//主函数试验区
int main(int argc, char* argv[])
{
    int k=5;
    LStack lss;
    InitLstack(lss);
    while(k!=-1)
    {
        scanf("%d",&k);
        PushLstack(lss,k);
    }
    prinfLstack1(lss);
    return 0;
}
搜索更多相关主题的帖子: 数据结构 
2010-04-26 19:39
快速回复:数据结构在进栈和出栈的时候有错!!帮忙改一下
数据加载中...
 
   



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

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