Systemnahe Programmierung in C: Unstrukturierte Programmierung |
1int a[20];
2
3unsigned int topPtr = 0;
4
5{
6
7 a[topPtr++] = ... ; /* push */
8
9 ... a[topPtr -1] ...; /* top */
10
11 topPtr--; /* pop */
12
13 ... ( topPtr == 0) /* isEmpty */
14
15 a[topPtr++] = ... ; /* push */
16
17 --topPtr; /* pop */
18
19}
|
|
Letzte Änderung: 11.01.2007 | © Prof. Dr. Uwe Schmidt |