链栈-进制转换

#include<stdio.h>
#include<malloc.h>
#include<error.h>
/*
 * 头节点为空
 * */
typedef int datatype;
typedef struct _node_
{
    datatype data;
    struct _node_ *next;
}linknod,*linkstack;
linkstack creat_empty_linkstack()
{
    linkstack l;
    l=(linkstack)malloc(sizeof(linknod));
    l->next=NULL;
    return l;
}
int empty_linkstack(linkstack l)
{
    return NULL==l->next;
}
int push_linkstack(linkstack h,datatype x)
{
    linkstack q;
    q=(linkstack)malloc(sizeof(linknod));
    q->data=x;
    q->next=h->next;
    h->next=q;
    return 1;
}
datatype pop_linkstack(linkstack h)
{
    linkstack q;
    datatype temp;
    q=h;
    q=h->next;
    h->next=q->next;
    temp=q->data;
    free(q);
    return temp;
}
datatype get_pop(linkstack h)
{
    return h->next->data;
}
int clear_linkstack(linkstack h)
{
    linkstack q;
    if(empty_linkstack(h))
    {
        return 0;
    }
    else
    {
        q=h->next;
        while(q!=NULL)
        {
            h->next=q->next;
            q=h->next;
            free(q);//释放指针所指到内存空间
        }
            q=NULL;
        return 1;
    }
}
int lenth_linkstack(linkstack h)
{
    int len=0;
    linkstack q;
    if(empty_linkstack(h))
    {
        return 0;
    }
    else
    {
        q=h->next;
        while(q!=NULL)
        {
            len++;
            q=q->next;
        }
        return len;
    }
}
linkstack change(linkstack h,datatype k,int n)
{

    while(1)
    {
        push_linkstack(h,k%n);
        k=k/n;
        if(k==0) break;
    }
    return h;
}
int show_linkstack(linkstack h)
{
    linkstack q;
    if(empty_linkstack(h))
    {
        return 0;
    }
    else
    {
        q=h->next;
        while(q!=NULL)
        {
            if(q->data>9)
            {
                if(q->data<10)
                    printf("0x%d",q->data);
                else
                    printf("%c",q->data-10+'A');
            }
            else printf("%d",q->data);
            q=q->next;
        }
        printf("\n");
        return 1;
    }
}
int main(int argc,char *argv[])
{
    linkstack h;
    datatype num=0;
    int n;
    h=creat_empty_linkstack();
    printf("请输入一个整数->进制");
    scanf("%d->%d",&num,&n);
    h=change(h,num,n);
    show_linkstack(h);    
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值