1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
#import "BTree.h"
@interface BTree (Private)
- (NSString *)toStringData;
@end
@implementation BTree
static int count = 0;
static NSString *BTreeMark = @"@endtree";
+ fromLines:(NSEnumerator *)en
{
NSMutableDictionary *dict =
[NSMutableDictionary dictionaryWithCapacity:1];
NSScanner *scanner;
NSString *line;
int valtag, valfirst, valsecond, valleaf;
BTree *current, *desc;
NSEnumerator *objEn;
while((line = [en nextObject])!=nil &&
[line hasPrefix:BTreeMark]==NO){
scanner = [NSScanner scannerWithString:line];
if([scanner scanInt:&valtag]==NO ||
[scanner scanInt:&valfirst]==NO ||
[scanner scanInt:&valsecond]==NO ||
[scanner scanInt:&valleaf]==NO){
return nil;
}
current =
[[BTree alloc]
initWithLeaf:(valleaf==-1 ?
nil : [NSNumber numberWithInt:valleaf])];
[dict setObject:current forKey:
[NSNumber numberWithInt:valtag]];
if(valfirst!=-1){
desc = [dict objectForKey:[NSNumber numberWithInt:valfirst]];
[current setFirst:desc];
}
if(valsecond!=-1){
desc = [dict objectForKey:[NSNumber numberWithInt:valsecond]];
[current setSecond:desc];
}
}
return current;
}
- initWithLeaf:(id)theLeaf
{
[super init];
first = nil;
second = nil;
parent = nil;
leaf = theLeaf;
if(leaf!=nil){
[leaf retain];
}
tag = count++;
return self;
}
- initWithPairFirst:(BTree *)fp andSecond:(BTree *)sp
{
[super init];
first = fp;
second = sp;
if(first!=nil){
[first setParent:self];
[first retain];
}
if(second!=nil){
[second setParent:self];
[second retain];
}
leaf = nil;
tag = count++;
return self;
}
- (id)leaf
{
return leaf;
}
- (BTree *)first
{
return first;
}
- (BTree *)second
{
return second;
}
- (int)tag
{
return tag;
}
- setFirst:(BTree *)theFirst
{
first = theFirst;
if(first!=nil){
[first setParent:self];
}
return self;
}
- setSecond:(BTree *)theSecond
{
second = theSecond;
if(second!=nil){
[second setParent:self];
}
return self;
}
- setParent:(BTree *)theParent
{
parent = theParent;
return self;
}
- parent
{
return parent;
}
- (BTree *)findLeaf:(id)theLeaf
{
BTree *res;
if(leaf==theLeaf){
return self;
}
if(first!=nil &&
((res = [first findLeaf:theLeaf]) != nil)){
return res;
}
if(second!=nil &&
((res = [second findLeaf:theLeaf]) != nil)){
return res;
}
return nil;
}
- (NSMutableArray *)leaves
{
NSMutableArray *data =
[NSMutableArray arrayWithCapacity:1];
[self inorderWithTarget:data
sel:@selector(addObject:)];
[data retain];
return data;
}
- inorderWithTarget:(id)t sel:(SEL)what;
{
if(first!=nil){
[first inorderWithTarget:t sel:what];
}
if(leaf!=nil){
IMP imp = [t methodForSelector:what];
(*imp)(t, what, leaf);
}
if(second!=nil){
[second inorderWithTarget:t sel:what];
}
return self;
}
- inorderWithPointer:(void *)ptr sel:(SEL)what
{
if(first!=nil){
[first inorderWithPointer:ptr sel:what];
}
if(leaf!=nil){
IMP imp = [leaf methodForSelector:what];
(*imp)(leaf, what, ptr);
}
if(second!=nil){
[second inorderWithPointer:ptr sel:what];
}
return self;
}
- substituteLeaves:(NSMutableDictionary *)dict
{
id obj;
if(first!=nil){
[first substituteLeaves:dict];
}
if(second!=nil){
[second substituteLeaves:dict];
}
if(leaf!=nil && (obj=[dict objectForKey:leaf])!=nil){
// NSLog(@"found %@ for %@\n", leaf, obj);
leaf = obj;
}
}
- (NSString *)toString
{
return [[self toStringData]
stringByAppendingFormat:@"%@\n", BTreeMark];
}
- (void)deallocAll
{
if(first!=nil){
[first deallocAll];
}
if(second!=nil){
[second deallocAll];
}
[super dealloc];
}
@end
@implementation BTree (Private)
- (NSString *)toStringData
{
NSString *node = @"", *res = @"";
node = [node stringByAppendingFormat:@"%d ", tag];
if(first!=nil){
res = [res stringByAppendingString:
[first toStringData]];
node = [node stringByAppendingFormat:@"%d ",
[first tag]];
}
else{
node = [node stringByAppendingString:@"-1 "];
}
if(second!=nil){
res = [res stringByAppendingString:
[second toStringData]];
node = [node stringByAppendingFormat:@"%d ",
[second tag]];
}
else{
node = [node stringByAppendingString:@"-1 "];
}
if(leaf!=nil){
node = [node stringByAppendingFormat:@"%d",
[leaf tag]];
}
else{
node = [node stringByAppendingString:@"-1"];
}
res = [res stringByAppendingFormat:@"%@\n", node];
return res;
}
@end
|