view paper/src/stack.h @ 72:fd984cfd5425

Add sources
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 06 Feb 2017 10:32:49 +0900
parents c0693ad89f04
children
line wrap: on
line source

struct SingleLinkedStack {
    struct Element* top;
} SingleLinkedStack;
struct Element {
    union Data* data;
    struct Element* next;
} Element;