2원 찾기 트리를 입력하여 해당 트리를 미러로 변환합니다.

2318 단어

제목:


이원 찾기 트리를 입력하여 이 트리를 거울로 변환합니다. 즉, 변환된 이원 찾기 트리에서 왼쪽 트리의 결점이 오른쪽 트리의 결점보다 큽니다.반복과 순환 두 가지 방법으로 트리의 거울 변환을 완성합니다.예를 들어 입력: 8/\6 10/\/\5 7 9 11 출력: 8/\10 6/\/\11 9 7 5

분석:


귀속 프로그램 설계가 비교적 간단하다
하나의 노드를 방문하여 비어 있지 않으면 좌우 아이를 교환한 후에 각각 좌우 나무에 귀속한다.
비귀속적인 실질은 우리가 수동으로 창고 압착을 완성해야 한다는 것이고, 사상은 일치한다

코드는 다음과 같습니다(GCC 컴파일 통과).

#include "stdio.h"
#include "stdlib.h"

#define MAXSIZE 8

typedef struct node
{
	int data;
	struct node * left;
	struct node * right;
}BTree;

void swap(BTree ** x,BTree ** y);// 
void mirror(BTree * root);// 
void mirrorIteratively(BTree * root);// 
BTree * CreatTree(int a[],int n);// ( )
void Iorder(BTree * root);// 

int main(void)
{
	int array[MAXSIZE] = {5,3,8,7,2,4,1,9};
	BTree * root;

	root = CreatTree(array,MAXSIZE);

	printf(" :
"); Iorder(root); printf("

");// , mirror(root); mirrorIteratively(root); Iorder(root); printf("
"); return 0; } void swap(BTree ** x,BTree ** y) { BTree * t = * x; * x = * y; * y = t; } void mirror(BTree * root) { if(root == NULL)// return; swap(&(root->left),&(root->right));// mirror(root->left);// mirror(root->right);// } void mirrorIteratively(BTree * root) { int top = 0; BTree * t; BTree * stack[MAXSIZE+1]; if(root == NULL) return; // 、 stack[top++] = root; while(top != 0) { t = stack[--top]; swap(&(t->left),&(t->right)); if(t->left != NULL) stack[top++] = t->left; if(t->right != NULL) stack[top++] = t->right; } } // BTree * CreatTree(int a[],int n) { BTree * root ,*p,*cu,*pa; int i; root = (BTree *)malloc(sizeof(BTree)); root->data = a[0];  root->left = root->right =NULL; for(i=1;i<n;i++) { p = (BTree *)malloc(sizeof(BTree)); p->data = a[i]; p->left = p->right =NULL; cu = root; while(cu) { pa = cu; if(cu->data > p->data) cu = cu->left; else cu = cu->right; } if(pa->data > p->data) pa->left = p; else pa->right = p; } return root; } // void Iorder(BTree * root) { if(root) { Iorder(root->left); printf("%3d",root->data); Iorder(root->right); } }

좋은 웹페이지 즐겨찾기