Dec 052017
The files from PC Magazine volume 7, number 14. | |||
---|---|---|---|
File Name | File Size | Zip Size | Zip Type |
BOUNCE.BAS | 2626 | 1086 | deflated |
BOXES2 | 384 | 147 | deflated |
BOXES2.C | 6528 | 1679 | deflated |
BOXES2.DEF | 384 | 189 | deflated |
BOXES2.H | 256 | 101 | deflated |
BOXES2.RC | 2176 | 406 | deflated |
FIG10.TXT | 376 | 185 | deflated |
FIG11.TXT | 1738 | 561 | deflated |
FIG2.C | 430 | 271 | deflated |
FIG3.C | 1282 | 407 | deflated |
FIG5.C | 685 | 243 | deflated |
FIG6.TXT | 433 | 207 | deflated |
FIG7.C | 664 | 210 | deflated |
FIG8.TXT | 711 | 294 | deflated |
FIG9.TXT | 336 | 152 | deflated |
LOAD.BAT | 255 | 173 | deflated |
NEWCON.PAS | 1480 | 620 | deflated |
NOPRTSC.PAS | 428 | 276 | deflated |
PATHSUB.C | 12179 | 3626 | deflated |
QFN.C | 4359 | 1214 | deflated |
RAMVIEW.ASM | 37857 | 9791 | deflated |
RAMVIEW.BAS | 13574 | 4148 | deflated |
RAMVIEW.COM | 2517 | 2022 | deflated |
RAMVIEW.DOC | 1685 | 906 | deflated |
RETRNDEM.BAT | 552 | 307 | deflated |
TRYQFN.C | 972 | 427 | deflated |
Download File VOL7N14.ZIP Here
Contents of the FIG10.TXT file
struct _tree
{
char *word;
int count;
struct _tree *left;
struct _tree *right;
};
void treeprint(struct _tree *node)
{
static int depth = 0;
if(node)
printf("\nLevel %d: %d occurrences of %s",
depth,node->count,node->word);
depth++;
treeprint(node->left);
treeprint(node->right);
depth--;
}
{
char *word;
int count;
struct _tree *left;
struct _tree *right;
};
void treeprint(struct _tree *node)
{
static int depth = 0;
if(node)
printf("\nLevel %d: %d occurrences of %s",
depth,node->count,node->word);
depth++;
treeprint(node->left);
treeprint(node->right);
depth--;
}
December 5, 2017
Add comments