view paper/src/stack.h @ 69:bda11534296f

Update pdf
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sat, 04 Feb 2017 16:34:14 +0900
parents c0693ad89f04
children
line wrap: on
line source

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