码迷,mamicode.com
首页 > 其他好文 > 详细

数据结构栈

时间:2019-04-22 12:39:23      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:include   数值   typedef   span   ++   str   scan   pop   int   

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 #define M 100
 5 typedef int ElemType;
 6 typedef struct
 7 {
 8     ElemType data[M];
 9     int top;
10 }Stack;
11 
12 //初始化栈
13 void InitStack(Stack *s)
14 {
15     s->top = -1;
16 }
17 int Push(Stack *s,ElemType e)
18 {
19     if (s->top == M-1)
20     {
21         printf("栈满\n");
22         return 0;
23     }
24     s->top++;
25     s->data[s->top]=e;
26     return 1;
27 }
28 
29 //判断是否为空
30 int Empty(Stack *s)
31 {
32     return(s->top==-1);
33 }
34 //出栈
35 int Pop(Stack *s,ElemType *e)
36 {
37     if(Empty(s))
38     {
39         printf("\n Stack is free");
40         return 0;
41     }
42     *e=s->data[s->top];
43     s->top--;
44     return 1;
45 }
46 
47 void Conversion(int N)
48 {
49     int e;
50     Stack *s = (Stack *)malloc(sizeof(Stack));
51     InitStack(s);
52     while(N)
53     {
54         Push(s,N%2);
55         N=N/2;
56     }
57     while(!Empty(s))
58     {
59         Pop(s,&e);
60         printf("%d",e);
61     }
62 }
63 
64 int main()
65 {
66     int n,m;
67     printf("请输入待转换的整数值: ");
68     scanf("%d",&m);
69     printf("转换为二进制值为: ");
70     Conversion(m);
71     printf("\n");
72 
73 }
74             

 

数据结构栈

标签:include   数值   typedef   span   ++   str   scan   pop   int   

原文地址:https://www.cnblogs.com/baijingtingfuren/p/10749241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!