• 栈的简单实现(2)-单链表实现


    引言

        栈(stack)是一种被广泛使用的线性数据结构,它只允许在表的一端进行插入或删除操作,因而栈也可以被称作为操作受限的线性表 。在栈中,允许插入或删除的一端称作栈顶(top)不允许插入和删除的另一端称作栈底(bottom);

    示意图如下:

    此文借助单链表简单地实现栈及其基本操作。

    代码如下:

    typedef struct stack{
        int data;
        struct stack* next;
    }ListStack;
    View Code

      注:这里假设栈中储存的是整型 (int) 的数据

    基本操作

    1.栈的初始化

    void  init(ListStack** top)
    {
        *top = NULL;
    }
    View Code

    2.进栈

    void push(ListStack** top, int value)
    {
        ListStack * newNode = (ListStack*)malloc(sizeof(ListStack));
        newNode->data = value;
        newNode->next = *top;
        *top = newNode;
    }
    View Code

    3.出栈

    int pop(ListStack** top)
    {
        if(*top==NULL){
            return NULL;
        }else{
            ListStack* p = *top;
            int val = p->data;
            *top = (*top)->next;
            free(p);
            
            return val;
            
        }
    }
    View Code

    4.判断栈是否为空

    bool isEmpty(ListStack** top)
    {
        if((*top)==NULL){
            return true; 
        }else{
            return false;
        }
        
    }
    View Code

    5.清空栈

    void clear(ListStack** top)
    {
        if((*top)!=NULL){
            ListStack* pFree, * pExtra;
            pFree = *top;
            while(pFree!=NULL){
                pExtra = pFree;
                pFree = pFree->next;
                free(pExtra);
            }
            *top = NULL;
        }    
    } 
    View Code

       进行测试 :

    int main(void)
    {
        ListStack s;
        ListStack * top;
        init(&top);
        //入栈 
        push(&top, 3);
        push(&top, 2); 
        
        if(isEmpty(&top)){
            printf("栈为空
    ");
        }else{
            printf("栈不为空
    ");
        }
        //出栈 
        printf("%d
    ", pop(&top));
        printf("%d
    ", pop(&top));
        
        push(&top, 333);
        push(&top, 666);    
        clear(&top);
        if(isEmpty(&top)){
            printf("栈为空
    ");
        }else{
            printf("栈不为空
    ");
        }    
        return 0;
    } 
    View Code

       测试结果:

    完整代码

    #include<stdio.h>
    #include<stdlib.h>
    
    typedef struct stack{
        int data;
        struct stack* next;
    }ListStack;
    
    void init(ListStack** top);
    void push(ListStack** top, int value);
    int pop(ListStack** top);
    bool isEmpty(ListStack** top);
    void clear(ListStack** top);
    int main(void)
    {
        ListStack s;
        ListStack * top;
        init(&top);
        //入栈 
        push(&top, 3);
        push(&top, 2); 
        
        if(isEmpty(&top)){
            printf("栈为空
    ");
        }else{
            printf("栈不为空
    ");
        }
        //出栈 
        printf("%d
    ", pop(&top));
        printf("%d
    ", pop(&top));
        
        push(&top, 333);
        push(&top, 666);    
        clear(&top);
        if(isEmpty(&top)){
            printf("栈为空
    ");
        }else{
            printf("栈不为空
    ");
        }    
        return 0;
    } 
    
    void  init(ListStack** top)
    {
        *top = NULL;
    }
    
    void push(ListStack** top, int value)
    {
        ListStack * newNode = (ListStack*)malloc(sizeof(ListStack));
        newNode->data = value;
        newNode->next = *top;
        *top = newNode;
    }
    
    int pop(ListStack** top)
    {
        if(*top==NULL){
            return NULL;
        }else{
            ListStack* p = *top;
            int val = p->data;
            *top = (*top)->next;
            free(p);
            
            return val;
            
        }
    }
    bool isEmpty(ListStack** top)
    {
        if((*top)==NULL){
            return true; 
        }else{
            return false;
        }
        
    }
    
    void clear(ListStack** top)
    {
        if((*top)!=NULL){
            ListStack* pFree, * pExtra;
            pFree = *top;
            while(pFree!=NULL){
                pExtra = pFree;
                pFree = pFree->next;
                free(pExtra);
            }
            *top = NULL;
        }    
    } 
    View Code
  • 相关阅读:
    Intent 传递Map数据
    android 读取.properties文件
    android 复制到剪切板
    SVN Update Error: Please execute the 'Cleanup' command
    Win8安装程序出现2502、2503错误解决方法
    启动系统自带的应用程序
    解决底部Button遮挡ListView最后一项内容的bug
    Intent传递list集合时异常解决
    Tomcate 启动异常,java.net.BindException: Address already in use: JVM_Bind:80的解决办法
    【Web】阿里icon图标gulp插件(gulp-qc-iconfont)
  • 原文地址:https://www.cnblogs.com/longl/p/6416208.html
Copyright © 2020-2023  润新知