"Small white growth"--chain stack (c language version)

Source: Internet
Author: User

1 //chain stack. CPP: Defines the entry point for the console application. 2 //3 4#include"stdafx.h"5#include <stdio.h>6#include <stdlib.h>//the header file for malloc7 8typedefstructLine_stack//Stack Packaging9 {Ten     intx; One     structLine_stack *Next; A }link; -  - voidPushes (link **top,intx); the voidPOPs (LINK * *top); -  - intMain () - { +     return 0;//This page of code only provides target sub-functions, no write main function - } +  A voidPushes (link **top,intX//into the stack, at { -Link *p; -  -p = (link *)malloc(sizeof(link)); -  -P->x =x; inP->next = (*top); -  to(*top) =p; +  -     return; the } *  $ voidPOPs (link **top)//out of the stackPanax Notoginseng { -Link *p; the  +     if((*top) = =NULL) A     { theprintf_s ("empty stack \ n"); +         return; -     } $  $p = (*top); -(*top) = p->Next; -      Free(p); the      -     return;Wuyi}

"Small white growth"--chain stack (c language version)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.