|
|
1.1 root 1: struct bnode : public common {
2: bnode* l;
3: bnode* r;
4: common* p;
5: bnode(common* pp) { l=r=0; p=pp; }
6: bnode(common* pp, bnode* ll, bnode* rr) { l=ll; r=rr; p=pp; }
7: };
8:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.