Problem UVA548-Tree

Accept: 2287  Submit: 13947

Time Limit: 3000 mSec

Problem Description

You are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the binary tree to any leaf. The value of a path is the sum of values of nodes along that path.

 Input

The input file will contain a description of the binary tree given as the inorder and postorder traversal sequences of that tree. Your program will read two line (until end of file) from the input file. The first line will contain the sequence of values associated with an inorder traversal of the tree and the second line will contain the sequence of values associated with a postorder traversal of the tree. All values will be different, greater than zero and less than 10000. You may assume that no binary tree will have more than 10000 nodes or less than 1 node.

 Output

For each tree description you should output the value of the leaf node of a path of least value. In the case of multiple paths of least value you should pick the one with the least value on the terminal node.

 Sample Input

3 2 1 4 5 7 6
3 1 2 5 6 7 4
7 8 11 3 5 16 12 18
8 3 11 7 16 18 12 5
255
255

Sample output

1

3

255

题解:这个题有两个有价值的地方,一个是二叉树的数组实现,一个是通过中序和后序遍历构造处二叉树的先序遍历。

二叉树的数组实现也是递归的方式,在这个地方由于题目中说明节点权值都不一样而且权值的范围也很适合作为数组下标,因此直接用权值作为节点下标建树。

通过中序和后序遍历构造先序遍历建树并不困难,只要熟悉三种遍历的过程,就很容易找到方法。后序遍历的最后一个必定是根节点,然后他的前面,一部分是左子树,一部分是右子树,

这个时候问题就是精确到哪一位是左子树,利用中序遍历轻松搞定,在中序遍历中找到根节点,左边就是左子树,右边就是右子树,那各有几个就很清楚了,之后就交给递归就好了,需要注意递归基,

也就是在中序遍历序列中找不到子树区间的时候,也就是左端点 > 右端点的时候。

一般情况下,用数组实现二叉树需要自己“申请”节点,也就是和链式前向星里的tot++差不多的操作

 const int root = ;
int cnt; void newtree(){
lchild[root] = rchild[root] = ;
have_val[root] = false;
cnt = root;
} int newnode(){
int u = ++cnt;
lchild[u] = rchild[u] = ;
have_val[u] = false;
return u;
}

摘自紫书。

以下是该题代码

 #include <iostream>
#include <string>
#include <cstdlib>
#include <cstdio>
#include <sstream>
#include <algorithm>
#define INF 0x3f3f3f3f
using namespace std; const int maxn = +;
int in_order[maxn],post_order[maxn];
int lchild[maxn],rchild[maxn];
int n,ans,Min; bool read_list(int *num){
string str;
if(!getline(cin,str)) return false;
stringstream ss(str);
n = ;
int x;
while(ss >> x){
num[n++] = x;
}
return n > ;
} int build(int l1,int r1,int l2,int r2){
if(l1 > r1) return ;
int root = post_order[r2];
int i = l1;
while(in_order[i] != root) i++;
int cnt = i-l1;
lchild[root] = build(l1,i-,l2,l2+cnt-);
rchild[root] = build(i+,r1,l2+cnt,r2-);
return root;
} void dfs(int root,int val){
val += root;
if(!lchild[root] && !rchild[root]){
if(Min == val) ans = ans < root ? ans : root;
else if(val < Min) ans = root,Min = val;
return;
}
if(val > Min) return;
if(lchild[root]) dfs(lchild[root],val);
if(rchild[root]) dfs(rchild[root],val);
} int main()
{
//freopen("input.txt","r",stdin);
while(read_list(in_order)){
read_list(post_order);
ans = ,Min = INF;
build(,n-,,n-);
dfs(post_order[n-],);
printf("%d\n",ans);
}
return ;
}

UVA548-Tree(二叉树数组表示)的更多相关文章

  1. 【日常学习】【二叉树遍历】Uva548 - Tree题解

    这道题目本身不难,给出后序遍历和中序遍历,求到节点最小路径的叶子,同样长度就输出权值小的叶子. Uva上不去了,没法測.基本上是依照ruka的代码来的.直接上代码 //Uva548 Tree #inc ...

  2. Leetcode 101 Symmetric Tree 二叉树

    判断一棵树是否自对称 可以回忆我们做过的Leetcode 100 Same Tree 二叉树和Leetcode 226 Invert Binary Tree 二叉树 先可以将左子树进行Invert B ...

  3. Leetcode 110 Balanced Binary Tree 二叉树

    判断一棵树是否是平衡树,即左右子树的深度相差不超过1. 我们可以回顾下depth函数其实是Leetcode 104 Maximum Depth of Binary Tree 二叉树 /** * Def ...

  4. [CareerCup] 4.7 Lowest Common Ancestor of a Binary Search Tree 二叉树的最小共同父节点

    4.7 Design an algorithm and write code to find the first common ancestor of two nodes in a binary tr ...

  5. [LeetCode] 111. Minimum Depth of Binary Tree ☆(二叉树的最小深度)

    [Leetcode] Maximum and Minimum Depth of Binary Tree 二叉树的最小最大深度 (最小有3种解法) 描述 解析 递归深度优先搜索 当求最大深度时,我们只要 ...

  6. UVA.548 Tree(二叉树 DFS)

    UVA.548 Tree(二叉树 DFS) 题意分析 给出一棵树的中序遍历和后序遍历,从所有叶子节点中找到一个使得其到根节点的权值最小.若有多个,输出叶子节点本身权值小的那个节点. 先递归建树,然后D ...

  7. [LeetCode] 111. Minimum Depth of Binary Tree 二叉树的最小深度

    Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shor ...

  8. [LeetCode] 543. Diameter of Binary Tree 二叉树的直径

    Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a b ...

  9. UVA548 Tree (二叉树的遍历)

    You are to determine the value of the leaf node in a given binary tree that is the terminal node of ...

  10. UVA548——Tree(中后序建树+DFS)

    Tree You are to determine the value of the leaf node in a given binary tree that is the terminal nod ...

随机推荐

  1. [CF1082E] Increasing Frequency

    Description 给定一个长度为 \(n\) 的数列 \(a\) ,你可以任意选择一个区间 \([l,r]\) ,并给区间每个数加上一个整数 \(k\) ,求这样一次操作之后数列中最多有多少个数 ...

  2. S3C2440 DMA 驱动示例

    将 DMA 抽象为一个字符设备,在初始化函数中调用 void *dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t * ...

  3. css布局------左边宽度不定,右边宽度自动填满剩余空间

    HTML <div class="container"> <div class="left"></div> <div ...

  4. SQL Server 2012使用Offset/Fetch Next实现分页

    在Sql Server 2012之前,实现分页主要是使用ROW_NUMBER(),在SQL Server2012,可以使用Offset ...Rows  Fetch Next ... Rows onl ...

  5. vue.js 使用时间组件 日期少一天的问题

    <el-form :inline="true" class="demo-form-inline padding-top-20"> <el-fo ...

  6. 正则表达式--C#正则表达式的符号及例子

    正则表达式是对字符串操作的一种逻辑公式,就是用事先定义好的一些特定字符.及这些特定字符的组合,组成一个“规则字符串”,这个“规则字符串”用来表达对字符串的一种过滤逻辑. C#中经常会遇到要查找某一个字 ...

  7. Oracle em 此网站的安全证书存在问题

    https://www.cnblogs.com/hyz5525/p/4390252.html C:\>emctl status dbconsole Oracle Enterprise Manag ...

  8. 微信小程序下拉框之二维数组或对象

    在项目中,我们大多数时候传的值并不是需要这个下标,而是其他的值.像我项目中,需要获取到的是它对应的Id,那么我们如何通过它的这个下标值返回你想要的值呢? 通过picker返回的索引值,去获取匹配你想获 ...

  9. 将Windows下的InfluxDB、Grafana做成Windows服务

    从网上下载的Windows下的InfluxDB.Grafana,都是控制台程序,打开窗口后,很容易被别人给关掉,因此考虑做成Windows服务,nssm正是解决该问题的利器. 1.下载nssm htt ...

  10. 安卓开发_浅谈Action Bar

    一.Action Bar 导航栏.是3.0之后出现的. 所以注意使用的时候清单文件要设置下 android:minSdkVersion="11"(至少11) 但如果使用v4包,则不 ...