view paper/src/stack.h @ 116:ed6719c301fc

Update slide
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 17:31:45 +0900
parents c0693ad89f04
children
line wrap: on
line source

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