| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 574 人关注过本帖
标题:主函数代码如何写?
取消只看楼主 加入收藏
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
结帖率:38.67%
收藏
已结贴  问题点数:20 回复次数:3 
主函数代码如何写?
利用堆栈 要输入5个数来进行插入,删除操作,主函数代码该如何写?
#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#define NULL 0
#define OK 1
#define ERROR -1
#define OVERFLOW -2
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef int SElemType;
typedef int Status;

typedef struct
{
    SElemType *base;
    SElemType *top;
    int stacksize;
}SqStack;

Status InitStack(SqStack &S)
{
    S.base=(SElemType *)malloc(STACK_INIT_SIZE *sizeof(SElemType));
    if(!S.base)exit(OVERFLOW);
    S.top=S.base;
    S.stacksize=STACK_INIT_SIZE;
   
    return OK;
}

Status GetTop(SqStack S,SElemType &e)
{

    if(S.top==S.base)
        return ERROR;
    e=*(S.top-1);

    return OK;
}

Status Push(SqStack &S,SElemType e)
{
    if(S.top-S.base>=S.stacksize)
    {
        S.base=(SElemType *)realloc(S.base,(S.stacksize +STACKINCREMENT)*sizeof(SElemType));
        if(!S.base)exit(OVERFLOW);
            S.top=S.base+S.stacksize;
            S.stacksize+=STACKINCREMENT;
    }
    *S.top++=e;
    return OK;
}

Status Pop(SqStack &S,SElemType &e)
{
    if(S.top==S.base)
    {
        return ERROR;
    }
    e=*S.base--;
    return OK;
}

int main(int argc, char* argv[])//这个主函数应该如何写代码来实现功能?
{
    /*SqStack S;
    int i=0;
    int e=0;
    InitStack(S);
    Push(S,e);
    for(i=0;i<5;i++)
    {
        scanf("%d",&S.top);
    }
    printf("\n");
    for(i=0;i<5;i++)
    {
        printf("%4d",S.top);
    }*/
    return 0;
}
搜索更多相关主题的帖子: 函数 代码 
2009-11-02 14:07
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#define NULL 0
#define OK 1
#define ERROR -1
#define OVERFLOW -2
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef int SElemType;
typedef int Status;

typedef struct
{
    SElemType *base;
    SElemType *top;
    int stacksize;
}SqStack;

Status InitStack(SqStack &S)
{
    int i=0;
    S.base=(SElemType *)malloc(STACK_INIT_SIZE *sizeof(SElemType));
    if(!S.base)exit(OVERFLOW);
    S.top=S.base;
    S.stacksize=STACK_INIT_SIZE;
    return OK;
}


Status GetTop(SqStack S,SElemType &e)
{

    if(S.top==S.base)
        return ERROR;
    e=*(S.top-1);

    return OK;
}

Status Push(SqStack &S,SElemType e)
{
    if(S.top-S.base>=S.stacksize)
    {
        S.base=(SElemType *)realloc(S.base,(S.stacksize +STACKINCREMENT)*sizeof(SElemType));
        if(!S.base)exit(OVERFLOW);
            S.top=S.base+S.stacksize;
            S.stacksize+=STACKINCREMENT;
    }
    *S.top++=e;
    return OK;
}

Status Pop(SqStack &S,SElemType e)
{
    if(S.top==S.base)
    {
        return ERROR;
    }
    e=*S.top--;
    return OK;
}

int main(int argc, char* argv[])//这个主函数应该如何写代码来实现功能?
{

    return 0;
}
2009-11-02 17:01
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
那代码该怎么改动啊?我刚开始学不懂
2009-11-02 18:04
henji
Rank: 1
等 级:新手上路
帖 子:227
专家分:0
注 册:2009-4-19
收藏
得分:0 
帮帮忙啊!
2009-11-02 18:40
快速回复:主函数代码如何写?
数据加载中...
 
   



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

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