comparison paper/src/akashaContext.h @ 100:ebe838b83ada

Self review
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sun, 12 Feb 2017 11:52:20 +0900
parents 243d8dc4a292
children
comparison
equal deleted inserted replaced
99:a891d7551bbf 100:ebe838b83ada
1 // Data Segment 1 // Data Segment
2 union Data { 2 union Data {
3 struct Tree { /* ... */ } tree; 3 struct Tree { /* ... 赤黒木の定義と同様 */ } tree;
4 struct Node { /* ... */ } node; 4 struct Node { /* ... 赤黒木の定義と同様 */ } node;
5 5
6 /* for verification */ 6 /* for verification */
7 struct IterElem { 7 struct IterElem {
8 unsigned int val; 8 unsigned int val;
9 struct IterElem* next; 9 struct IterElem* next;