引言 我们知道,二叉树遍历的实质是对非线性结构的树进行线性化的过程,它使得每个节点(除了第一个和最后一个节点外)在这种线性序列中有且仅有一个直接前驱和一个直接后继.但是在二叉链表的存储方式中,我们只能找到每个节点的左右孩子信息,而不能直接得到一个节点在先序,中序和后序遍历这一序列中的前驱和后继信息,这些信息只有在遍历二叉树的动态过程中才能获得.为了保留节点在某种遍历序列中其直接前驱和直接后继的位置信息,可以在每个节点中增加两个指针域来存放在遍历时所得到的有关前驱和后继的信息,但这种方法却降低了存储空间的利用率. 对于采用二叉链表存储结构的二叉树来说,如果该二叉树有n个节点,则存放这n个节点的二叉链表中就有2n个指针域,且只有n-1个指针域用来存储孩子节点地址的,而另外n+1个指针域为空.因此,可以利用节点空的左指针域(lchild)来指向该节点在某种遍历序列中的直接前驱节点;利用节点空的右指针域(rchild)来指向该节点在某种遍历序列中的直接后继节点.对于那些非空的指针域,则仍然存放指向该节点左右孩子的指针.这些指向直接前驱节点或直接后继节点的指针被称为线索(Thread),加了线索的二叉树被称为 线索二叉树. 为二叉树中所有节点排列成一个线性序列可采用不同的遍历方法(即先序,中序,后序)得到.因此,线索二叉树将先序线索二叉树,中序线索二叉树和后序线索二叉树三种.并且,我们把二叉树改造成线索二叉树的过程成为线索化. 对下图中(a)所示二叉树进行线索化,得到的先序线索二叉树,中序线索二叉树,后序线索二叉树分别如图(b)(c)(d)所示,图中的实线表示指针,虚线表示线索. 接下来的问题是:在二叉链表存储中如何区分一个节点的指针域存放的是指针还是线索?这种区分可以用下面两种方法实现. (1).为每个节点增加两个标志位,left_flag
和right_flag
,并另: left_flag = { $^{0\ \ \ left_child 指向节点的左孩子} _{1\ \ \ left_child 指向节点的右孩子}$
right_flag = { $^{0\ \ \ right_child 指向节点的左孩子} _{1\ \ \ right_child 指向节点的右孩子}$ 每个标志位只占一个bit,这样就只需增加很少的存储空间,这种情况下的节点结构为:
| left_flag | left_child | data | right_child | right_flag | |: —– :|: —– :|: —– :|: —– :|: —– :|: – :|
(2). 不改变节点的结构,仅在作为线索的地址前加一个负号.也即,负地址表示线索而正地址表示指针.
在此,我们按照第一种方法来介绍线索二叉树的存储.为了将二叉树中所有的空指针都利用起来以及操作方便的需要,在存储线索二叉树时通常增加一个头节点,其结构与其他线索二叉树的节点结构完全一样,只是其存储域不存储数据而已.这个头节点的左指针指向二叉树的根节点,而右指针则指向某种遍历序列的最后一个节点.并且,二叉树在某种遍历下的第一个节点的前驱节点和最后一个节点的后继节点都指向这个头节点.
一. 线索化二叉树 为了实现线索化二叉树,我们将二叉树节点的类型定义修改为:
1 2 3 4 5 6 7 8 typedef struct Tree_node { char data; //节点数据 int left_flag; //线索标记 int right_flag; struct *Tree_node *left_child; //左孩子或直接前驱线索指针 struct *Tree_node *right_child;//右孩子或直接后继线索指针 }
将二叉树线索化的过程,实际上是在二叉树遍历过程中用线索取代空指针的过程.对同一颗二叉树遍历的方式不同,所得到的线索树也不同.但无论哪种遍历,实现线索的方法是一样的,即都是设置一个指针pre始终指向刚被访问过的节点,而指针p则用来指向正在访问的节点,由此记录下遍历过程中访问节点的先后顺序,并对当前访问的节点*p做如下处理:
若p所指节点有空指针域,则置相应标记位为1.
若pre != NULL,则看pre所指节点的右标志是否为1,若为1则pre->right_child
指向p所指向的当前节点(即节点*pre的直接后继).
若p所指当前节点的左标志为1,则p->left_child
指向pre
所指向的节点(即节点*pre
是节点*p
的直接前驱).
将指针pre指向刚访问过的当前节点*p
(即pre = p
;),而p则下移指向新的当前节点. 需要注意的是,在给一棵二叉树添加线索时先要创建一个头节点,并建立头节点与二叉树根节点的线索.当二叉树线索化之后,还需建立最后一个节点与头节点之间的线索.
下面,我们将建立中序线索二叉树的算法为例予以说明,该算法分为Thread(p)
算法和Creat_Thread(p)
算法两部分.
Thread(p)算法用于对*p
为根节点的二叉树进行中序线索化.在该算法中,p总指向当前被线索化的节点,而pre作为全局变量则指向刚访问过的节点.也即,*pre
是*p
的前驱节点,而*p
是*pre
的后继节点.Thread(p)算法类似中序遍历的递归算法,在p指针不线索化为指向其前驱节点*pre
并将其标志位left_flag
置为1;否则left_child
指向左孩子节点.若*pre
节点的right_child
指针为NULL
,则将right_child
指针线索化为指向其后继节点*p
并将其标志位right_child
置为1;否则right_child
指向其右孩子节点.然后将pre
指向*p
节点,再对*p
节点的右子树进行线索化.
Create_Thread(b)算法是对以二叉树存储的二叉树b进行中序线索化,并返回线索化后的头节点指针root
.实现方法是:先创建头节点*root
,其right_child
域为线索,left_child
域为链指针并指向二叉树根节点*b
.如果二叉树b为空,则将left_child
指向头节点自身;否则将*root
的left_child
指向*b
节点,并将pre也指向*root
节点.然后调用Thread(b)对整个二叉树线索化,即将指针b传给形参p,从而使得*pre
是*p
的前驱节点.最后,加入指向头节点的线索,并将头节点的right_child
指针域线索化为指向最后一个节点(由于线索化过程是进行到p等于NULL
为止,所以最后一个节点就是*pre
).
中序线索二叉树算法如下:
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 TBTree *pre; void Thread (TBTree *p) { if (p != NULL ) { Thread(p->left_child); if (p->left_child == NULL ) { p->left_child = pre; p->left_flag = 1 ; } else { p->left_flag = 0 ; } if (pre->right_child == NULL ) { pre->right_child = p; pre->right_flag = 1 ; } else { pre->right_flag = 0 ; } pre = p; Thread(p->right_child); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 TBTree *Create_Thread (TBTree *b) { TBTree *root; root = (TBTree *)malloc (sizeof (TBTree)); root->left_flag = 0 ; root->right->flag = 1 ; if (b == NULL ) { root->left_child = root; } else { root->left_child = b; pre = root; Thread(b); pre->right_child = root; pre->right_flag = 1 ; root->right_child = pre; } return root; }
二.访问线索二叉树 线索二叉树建立之后,就可以通过线索访问某个节点的前驱节点或后继节点了.但是,由于这种线索是通过二叉树存储结构中的空指针实现的.因此这种线索只是不完整的部分线索,即并不是每个节点的前驱和后继都有指针指向.所以,在访问某个节点的前驱或后继节点时也要分有线索和无线索两种情况来考虑.
在中序线索二叉树上查找任意节点的中序前驱节点 对中序线索二叉树上的任一节点*p
,寻找其中序前驱节点可分为下面两种情况: (1). 若p->left_flag
等于1,则p->left_child
即指向前驱节点(p->left_child
为线索指针). (2). 若p->left_flag
等于0,则表明*p
有左孩子.根据中序遍历的定义,*p
的前驱节点是以*p
的左孩子为根节点的子树的最右节点.也即,沿*p
左子树的右指针链向下查找,直到某个节点的右标志right_flag
为1时,则该节点就是所找的前驱节点. 在中序线索树上查找*p
的中序前驱节点算法如下:1 2 3 4 5 6 7 8 9 10 11 12 13 TBTree *Inpre (TBTree *p) { TBTree *pre; pre = p ->left_child; if (p->left_flag == 0 ) { while (pre->right_flag == 0 ) { pre = pre->right_child; } } return pre; }
2.在中序线索二叉树上查找任意节点的中需后续节点 对于中序线索二叉树上的任一节点*p
,寻找其中序后继节点可分为下面两种情况: (1). 若p->right_flag
等于1,则p->right_child
即指向后继节点. (2). 若p->left_flag
等于0,则表明*p
有右孩子.根据中序遍历的定义,*p
的后继节点是以*p
的右孩子为根节点的子树的最左节点.也即,沿*p
右子树的左指针链向下查找,直到某个节点的左标志left_flag
为1时,则该节点就是所找的后继节点. 在中序线索树上查找*p
的中序后继节点算法如下:
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 TBTree *InPost (TBTree *p) { TBTree *post; post = p ->right_child; if (p->right_flag == 0 ) { while (post->left_flag == 0 ) { pre = pre->left_child; } } return post; } ``` 3. 中序遍历中序线索二叉树 在中序线索二叉树中,开始节点就是根节点的最左下节点,而求当前节点在中序序列中的后继和前驱节点方法如前所述,并且最后一个节点的`right_child`指针被线索化为指向头节点.利用这些条件,在中序线索二叉树中实现中序遍历的算法如下: ```cvoid Inorder (TBTree *b) { TBTree *p; p = b->left_child; while (p != b) { while (p->left_flag == 0 ) { p = p ->left_child; } printf ("%3c" , p->data); while (p->right_flag == 1 && p->right_child != b) { p = p->right_child; printf ("%3c" , p->data); } p = p->right_child; } }
三.线索二叉树的接口
thread_tree.h
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 #ifndef _THREAD_TREE_H_ #define _THREAD_TREE_H_ #include "tools.h" #define ONE ( 1 ) #define THREAD ( 1 ) #define LINK ( 0 ) #define END ('#' ) typedef struct Tree_node Tree_node ;struct Tree_node { char data; int left_flag; int right_flag; Tree_node * left_child; Tree_node *right_child; }; typedef Tree_node *Bin_tree; Tree_node *find_parent (Bin_tree root, Tree_node *node) ;Tree_node *get_parent (Bin_tree root, Tree_node *kid) ;Bin_tree create_tree (char **str) ; void pre_order_print (Bin_tree root) ; void mid_order_print (Bin_tree root) ; void last_order_print (Bin_tree root) ; void pre_thread (Bin_tree tree) ;Bin_tree create_pre_thread (Bin_tree tree) ;Bin_tree front_in_pre (Bin_tree root, Tree_node *p_node) ;Bin_tree behind_in_pre (Bin_tree root, Tree_node *p_node) ;void pre_order_print_thread (Bin_tree root) ;void destroy_pre (Bin_tree root) ;void mid_thread (Bin_tree tree) ;Bin_tree create_mid_thread (Bin_tree tree) ;Bin_tree front_in_mid (Bin_tree root, Tree_node *p_node) ;Bin_tree behind_in_mid (Bin_tree root, Tree_node *p_node) ;void mid_order_print_thread (Bin_tree root) ; void destroy_mid (Bin_tree root) ;void last_thread (Bin_tree tree) ;Bin_tree create_last_thread (Bin_tree tree) ;Bin_tree front_in_last (Bin_tree root, Tree_node *p_node) ;Bin_tree behind_in_last (Bin_tree root, Tree_node *p_node) ;void last_order_print_thread (Bin_tree root) ;void destroy_last (Bin_tree root) ; #endif
四. 线索二叉树的接口实现
-
thread_tree.c
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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <strings.h> #include <unistd.h> #include <math.h> #include "thread_tree.h" #include "tools.h" #include "queue.h" #include "stack.h" static int max (int a, int b) ;static Tree_node *create_node (void ) ;static int get_index (char *string , char value) ;static void destroy (Bin_tree root) ;static Tree_node *find_common (Bin_tree root, Tree_node *node1, Tree_node *node2) ;static int max (int a, int b) { return b > a ? b : a; }static Tree_node *create_node (void ) { Tree_node *node = (Tree_node *)Malloc(sizeof (Tree_node)); bzero(node, sizeof (Tree_node)); return node; }static int get_index (char *string , char value) { char *local = strchr (string , value); return local == NULL ? -1 : (local - string ) / sizeof (char ); }Tree_node *find_parent (Bin_tree root, Tree_node *kid) { Tree_node *temp = root; if (temp->left_child == kid) { return temp; } else { temp = temp->left_child; while (temp->left_child != kid && temp->right_child != kid) { if (temp->left_flag == LINK) { temp = temp->left_child; } else { temp = temp->right_child; } } } return temp; }Tree_node *get_parent (Bin_tree root, Tree_node *kid) { if (root == NULL || kid == NULL ) { printf ("can't find.\n" ); return NULL ; } Tree_node *temp = root; if (temp->left_child == kid) { return temp; } else { temp = temp->left_child; while (temp->left_child != kid && temp->right_child != kid) { if (temp->right_flag == LINK) { temp = temp->right_child; } else { temp = temp->left_child; } } } return temp; }Bin_tree create_tree (char **str) { Bin_tree root = NULL ; if (str != NULL && *str != NULL && **str != END){ root = create_node(); root->data = **str; root->left_flag = LINK; root->right_flag = LINK; (*str)++; root->left_child = create_tree(str); (*str)++; root->right_child = create_tree(str); } return root; }void pre_order_print (Bin_tree root) { if (root != NULL ){ printf ("%c " , root->data); pre_order_print(root->left_child); pre_order_print(root->right_child); } }void mid_order_print (Bin_tree root) { if (root != NULL ){ mid_order_print(root->left_child); printf ("%c " , root->data); mid_order_print(root->right_child); } }void last_order_print (Bin_tree root) { if (root != NULL ){ last_order_print(root->left_child); last_order_print(root->right_child); printf ("%c " , root->data); } } Tree_node *pre = NULL ; void pre_thread (Bin_tree tree) { if (tree != NULL ) { if (!tree->left_child) { tree->left_child = pre; tree->left_flag = THREAD; } else { tree->left_flag = LINK; } if (pre->right_child == NULL ) { pre->right_child = tree; pre->right_flag = THREAD; } else { pre->right_flag = LINK; } pre = tree; if (tree->left_flag == LINK) pre_thread(tree->left_child); if (tree->right_flag == LINK) pre_thread(tree->right_child); } }Bin_tree create_pre_thread (Bin_tree tree) { Bin_tree root = NULL ; root = create_node(); root->left_flag = LINK; root->right_flag = THREAD; if (tree == NULL ) { root->left_child = root; } else { pre = root; root->left_child = tree; pre_thread(tree); pre->right_child = root; pre->right_flag = THREAD; root->right_child = pre; } return root; }Bin_tree front_in_pre (Bin_tree root, Tree_node *p_node) { Tree_node *front = NULL ; Tree_node *parent = NULL ; front = p_node->left_child; if (p_node->left_flag == LINK) { parent = find_parent(root, p_node); if (parent->left_child == p_node) { front = parent; } else { front = parent->left_child; while (front->right_flag == LINK) { front = front->right_child; } } } return front; }Bin_tree behind_in_pre (Bin_tree root, Tree_node *p_node) { Tree_node *behind = NULL ; behind = p_node->left_child; if (p_node->left_flag == LINK) { behind = p_node->left_child; } else { behind = p_node->right_child; } return behind; }void pre_order_print_thread (Bin_tree root) { Tree_node *p_node = NULL ; p_node = root->left_child; while (p_node != root) { printf ("%3c" , p_node->data); if (p_node->left_flag == LINK) { p_node = p_node ->left_child; } else { p_node = p_node->right_child; } } } void destroy_pre (Bin_tree root) { if (NULL == root) { return ; } Tree_node *p_node = root->left_child; Tree_node *pre = p_node; while (p_node != root) { pre = p_node; if (p_node->left_flag == LINK) { p_node = p_node->left_child; } else { p_node = p_node->right_child; } free (pre); } }void mid_thread (Bin_tree tree) { if (tree != NULL ) { mid_thread(tree->left_child); if (tree->left_child == NULL ) { tree->left_child = pre; tree->left_flag = THREAD; } else { tree->left_flag = LINK; } if (pre->right_child == NULL ) { pre->right_child = tree; pre->right_flag = THREAD; } else { pre->right_flag = LINK; } pre = tree; mid_thread(tree->right_child); } }Bin_tree create_mid_thread (Bin_tree tree) { Bin_tree root = NULL ; root = create_node(); root->left_flag = LINK; root->right_flag = THREAD; if (tree == NULL ) { root->left_child = root; } else { root->left_child = tree; pre = root; mid_thread(tree); pre->right_child = root; pre->right_flag = THREAD; root->right_child = pre; } return root; }Bin_tree front_in_mid (Bin_tree root, Tree_node *p_node) { Tree_node *front = NULL ; front = p_node->left_child; if (p_node->left_flag == LINK) { while (front->right_flag == LINK) { front = front->right_child; } } return front; }Bin_tree behind_in_mid (Bin_tree root, Tree_node *p_node) { Tree_node *behind = NULL ; behind = p_node->right_child; if (p_node->right_flag == LINK) { while (behind->left_flag == LINK) { behind = behind->left_child; } } return behind; }void mid_order_print_thread (Bin_tree root) { Tree_node *p = NULL ; p = root->left_child; while (p != root) { while (p->left_flag == LINK) { p = p ->left_child; } printf ("%3c" , p->data); while (p->right_flag == THREAD && p->right_child != root) { p = p->right_child; printf ("%3c" , p->data); } p = p->right_child; } } void destroy_mid (Bin_tree root) { Tree_node *p_node = NULL ; Tree_node *pre_node = NULL ; p_node = root->left_child; while (p_node != root) { while (p_node->left_flag == LINK) { p_node = p_node->left_child; } pre_node = p_node; while (p_node->right_flag == THREAD && p_node->right_child != root) { p_node = p_node->right_child; free (pre_node); pre_node = p_node; } p_node = p_node->right_child; free (pre_node); } }void last_thread (Bin_tree tree) { if (tree != NULL ) { last_thread(tree->left_child); last_thread(tree->right_child); if (tree->left_child == NULL ) { tree->left_child = pre; tree->left_flag = THREAD; } if (pre->right_child == NULL ) { pre->right_child = tree; pre->right_flag = THREAD; } pre = tree; } }Bin_tree create_last_thread (Bin_tree tree) { Bin_tree root = NULL ; root = create_node(); root->right_flag = LINK; root->right_child = root; if (tree == NULL ) { root->left_child = root; } else { pre = root; root->left_child = tree; root->left_flag = LINK; last_thread(tree); root->right_child = pre; } return root; }Bin_tree front_in_last (Bin_tree root, Tree_node *p_node) { Tree_node *front = NULL ; if (p_node->right_flag == LINK) { front = p_node->right_child; } else { front = p_node->left_child; } return front; }Bin_tree behind_in_last (Bin_tree root, Tree_node *p_node) { Tree_node *behind = NULL ; Tree_node *parent = NULL ; if (p_node->right_flag == THREAD) { behind = p_node->right_child; } else { parent = find_parent(root, p_node); if (parent->right_child == p_node) { behind = parent; } else { behind = parent->right_child; while (behind->left_flag == LINK || behind->right_flag == LINK) { if (behind->left_flag == LINK) { behind = behind->left_child; } else { behind = behind->right_child; } } } } return behind; }void last_order_print_thread (Bin_tree root) { Tree_node *temp = root->left_child; Tree_node *parent = NULL ; while (TRUE) { while (temp->left_flag == LINK) { temp = temp->left_child; } if (temp->right_flag == LINK) { temp = temp->right_child; } else { break ; } } while (temp != root) { printf ("%3c" , temp->data); parent = get_parent(root, temp); if (parent == root) { temp = root; } else if (parent->right_flag == THREAD || temp == parent->right_child) { temp = parent; } else { while (parent->right_flag == LINK) { parent = parent->right_child; while (parent->left_flag == LINK) { parent = parent->left_child; } } temp = parent; } } }void destroy_last (Bin_tree root) { Tree_node *temp = root->left_child; Tree_node *parent = NULL ; while (TRUE) { while (temp->left_flag == LINK) { temp = temp->left_child; } if (temp->right_flag == LINK) { temp = temp->right_child; } else break ; } while (temp != root) { parent = get_parent(root, temp); if (parent == root) { free (temp); temp = root; } else if (parent->right_flag == THREAD || temp == parent->right_child) { free (temp); temp = parent; } else { while (parent->right_flag == LINK) { parent = parent->right_child; while (parent->left_child == LINK) { parent = parent->left_child; } } free (temp); temp = parent; } } }
五. 函数功能检测
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 #include <stdio.h> #include "thread_tree.h" #define _PRINT_TREE_ 1 int main (int argc, char **argv) { Bin_tree root0 = NULL ; Bin_tree root1 = NULL ; Bin_tree root2 = NULL ; Bin_tree root3 = NULL ; Bin_tree root4 = NULL ; Bin_tree root5 = NULL ; char *str0 = "ABC##DE##F##GH#I##J##" ; char *str1 = "ABCE###DF##G##HI##J##" ; char *str2 = "ABCD###E#F##G#HI##J##" ; Boolean equal = FALSE; Tree_node *p_node = NULL ; printf ("\n**********************************************************************************\n" ); printf ("一.1.创建二叉树\n" ); root0 = create_tree(&str0); root1 = create_tree(&str1); root2 = create_tree(&str2); #if _PRINT_TREE_ printf (" root0: root1: root2: \n" ); printf (" A A A \n" ); printf (" / \\ / \\ / \\ \n" ); printf (" B G B H B G \n" ); printf (" / \\ / \\ / \\ / / \\ \\ \n" ); printf (" C D H J C D I C E H \n" ); printf (" / \\ \\ / / \\ \\ / \\ / \\ \n" ); printf (" E F I E F G J D F I J \n" ); printf ("\n**********************************************************************************\n" );#endif printf ("二.遍历二叉树:\n" ); printf ("pre order root0 :\n" ); pre_order_print(root0); printf ("\n" ); printf ("mid order root1 :\n" ); mid_order_print(root1); printf ("\n" ); printf ("last order root2 :\n" ); last_order_print(root2); printf ("\n" ); printf ("\n**********************************************************************************\n" ); printf ("\n遍历前序线索二叉树:\n" ); root3 = create_pre_thread(root0); pre_order_print_thread(root3); printf ("\n" ); p_node = root3->left_child->left_child->right_child; printf ("front is : %c ," ,front_in_pre(root3, p_node)->data); printf ("The node: %c ," ,p_node->data); printf ("behind is : %c\n" ,behind_in_pre(root3, p_node)->data); printf ("\n遍历中序线索二叉树:\n" ); root4 = create_mid_thread(root1); mid_order_print_thread(root4); printf ("\n" ); p_node = root4->left_child->left_child->right_child; printf ("front is : %c ," ,front_in_mid(root4, p_node)->data); printf ("The node: %c ," ,p_node->data); printf ("behind is : %c\n" ,behind_in_mid(root4, p_node)->data); printf ("\n遍历后序线索二叉树:\n" ); root5 = create_last_thread(root2); last_order_print_thread(root5); printf ("\n" ); p_node = root5->left_child->left_child->right_child; printf ("front is : %c ," ,front_in_last(root5, p_node)->data); printf ("The node: %c ," ,p_node->data); printf ("behind is : %c\n" ,behind_in_last(root5, p_node)->data); destroy_pre(root3); destroy_mid(root4); destroy_last(root5); printf ("\n" ); return 0 ; }
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 root@aemonair:~thread_tree# cc.sh *.c Compiling ... -e CC dlist.c main.c queue .c stack .c thread_tree.c tools.c -g -lpthread -lm -e Completed . -e Wed Aug 10 19 :01 :18 CST 2016 root@aemonair:~thread_tree# ./dlist ********************************************************************************** 一.1 .创建二叉树 root0: root1: root2: A A A / \ / \ / \ B G B H B G / \ / \ / \ / / \ \ C D H J C D I C E H / \ \ / / \ \ / \ / \ E F I E F G J D F I J ********************************************************************************** 二.遍历二叉树: pre order root0 : A B C D E F G H I J mid order root1 : E C B F D G A I H J last order root2 : D C F E B I J H G A ********************************************************************************** 遍历前序线索二叉树: A B C D E F G H I J front is : C ,The node: D ,behind is : E 遍历中序线索二叉树: E C B F D G A I H J front is : F ,The node: D ,behind is : G 遍历后序线索二叉树: D C F E B I J H G A front is : F ,The node: E ,behind is : B
六. 总结 线索二叉树,将二叉树之间用线索相连,将没用到的指针用起来,将各个节点见关系串联起来. 在实现的过程中,某一个节点的顺序和其父节点或者兄弟节点之间的关系由节点之间的指针关系相当密切. 线索二叉树作为一种数据结构,各种操作思想也是很重要的~