1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
| #include <stdio.h> #include <stdlib.h>
typedef struct Node //定义栈结点的结构体 { int data; struct Node *next; } Node;
Node *initStack() { Node *L = (Node *)malloc(sizeof(Node)); L->data = 0; L->next = NULL; return L; }
void push(Node *L, int data) { Node *node = (Node *)malloc(sizeof(Node)); node->data = data; node->next = L->next; L->next = node; L->data++; }
int pop(Node *L) { if (L->data == 0) { return 0; } else { Node *node = L->next; int data = node->data; L->next = node->next; free(node); L->data--; return data; } }
int isEmpty(Node *L) { if (L->data == 0 || L->next == NULL) { return 1; } else { return 0; } }
void printStack(Node *stack) { Node *node = stack->next; while (node) { printf("%d -> ", node->data); node = node->next; } printf("NULL\n"); }
int main() { Node *stack = initStack(); push(stack, 1); push(stack, 2); push(stack, 3); push(stack, 4); printStack(stack); printf("pop = %d\n", pop(stack)); printStack(stack); }
|