1123 Is It a Complete AVL Tree (30 分)

该博客主要讨论了AVL树的插入操作,并通过旋转实现树的平衡。提供了插入节点的C++代码实现,包括左旋、右旋、左右旋、右左旋四种情况。同时,使用深度优先搜索遍历AVL树并输出节点值。最后,通过一个示例展示了如何检查和输出完整的AVL树节点值。
摘要由CSDN通过智能技术生成

1123 Is It a Complete AVL Tree (30 分)

模板题

#include <iostream>
using namespace std;
int tree[500];
struct node{
	int val;
	struct node *left, *right;
};
node *rotateLeft(node *root) {
	node *t = root->right;
	root->right = t->left;
	t->left = root;
	return t;
}
node *rotateRight(node *root) {
	node *t = root->left;
	root->left = t->right;
	t->right = root;
	return t;
}
node *rotateLeftRight(node *root) {
	root->left = rotateLeft(root->left);
	return rotateRight(root);
}
node *rotateRightLeft(node *root) {
	root->right = rotateRight(root->right);
	return rotateLeft(root);
}
int height(node *root) {
	if(root == NULL) return 0;
	return max(height(root->left), height(root->right)) + 1;
}
node *insert(node *root, int v) {
	if(root == NULL) {
		root = new node();
		root->val = v;
		root->left = root->right = NULL;
	} else if(v < root->val){
		root->left = insert(root->left, v);
		if(height(root->left) - height(root->right) > 1)
			root = v < root->left->val ? rotateRight(root) : rotateLeftRight(root);
	} else{
		root->right = insert(root->right, v);
		if(height(root->left) - height(root->right) < -1)
			root = v > root->right->val ? rotateLeft(root) : rotateRightLeft(root);
	}
	return root;
}
void dfs(node *root, int v) {
	if(root == NULL) return;
	tree[v] = root->val;
	dfs(root->left, v * 2);
	dfs(root->right, v * 2 + 1);
}
int main() {
	int n, x;
	cin >> n;
	node *root = NULL;
	for(int i = 0; i < n; ++i){
		cin >> x;
		root = insert(root, x);
	}
	dfs(root, 1);
	int f = 1;
	for(int i = 1; i <500; ++i){
		if(tree[i] == 0 && i <= n) f = 0;
		if(tree[i]){
			if(i != 1) cout << " ";
			cout << tree[i];
		}	
	}
	if(f) printf("\nYES");
	else printf("\nNO");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值