Lab_Chapter-3 :: Stack
ตัวอย่างนี้ จะเป็นการรวมการทำงานของ Stack รวมถึงทั้งการ pop และ push แล้วสั่งแสดงผลทั้งหมด #include <stdio.h> /* Kusumoto Computer Coding http://kusumoto.co */ //void pop(NODE *head); //void push(NODE *headNode, char data); //void PrintStack(NODE *head); typedef struct node { char data; struct NODE *next; } NODE; void PrintStack(NODE *head){ printf("\n ———- Print Stack ————\n"); while(head!=NULL) { if(head->data!=’H’){ printf(" | %c | […]