首页 > 代码库 > NYOJ 220 (红黑树--模拟)
NYOJ 220 (红黑树--模拟)
链接:click here
题意:题目其实很简单,绕一大圈,原来就是叫你输出输出中序遍历,Orz~~~红黑树经过旋转后中序遍历其实是不变的,所以与下面的旋转没有关系~~--- _ --.
思路:直接数组模拟,或用结构体:包含(数据域,左子树,右子树)
代码:
#include <iostream> #include <stdio.h> #include <string.h> #include <vector> #include <algorithm> using namespace std; const int maxn=20; const int inf =0x3f3f3f3f; int N,F,D; int leftt[maxn],rightt[maxn]; struct node { int data; int leftchild,rightchild; } tree[maxn]; void inorder(int key) { if(key!=-1) { inorder(tree[key].leftchild); printf("%d\n",tree[key].data); inorder(tree[key].rightchild); } } int main() { int T,root,ld,rd; scanf("%d",&T); while(T--) { int n; scanf("%d",&n); for(int i=0; i<n; i++) { scanf("%d%d%d",&root,&ld,&rd); tree[root].data=http://www.mamicode.com/root;>NYOJ 220 (红黑树--模拟)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。